summaryrefslogtreecommitdiff
path: root/src/sdl.c
diff options
context:
space:
mode:
authorAbhinav Prasai <abhinav.prsai@gmail.com>2025-11-23 02:16:17 +0000
committerAbhinav Prasai <abhinav.prsai@gmail.com>2025-11-23 02:16:17 +0000
commit5d5f1c0ad39481cd11960c0f25c1d7c5318fef6d (patch)
treeaa66cb374ab002f650cc4dfd4e18b7f13ac75395 /src/sdl.c
parent3ff5fe71a7c5cba9d4f4706ee0364503d25fefe5 (diff)
add engine (no webkit yet, only tab support)
Diffstat (limited to 'src/sdl.c')
-rw-r--r--src/sdl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sdl.c b/src/sdl.c
index 4614969..03821a0 100644
--- a/src/sdl.c
+++ b/src/sdl.c
@@ -13,7 +13,7 @@ SDL_Window* sdl_create_window(const char* title, int w, int h)
bool sdl_init(void)
{
if (SDL_Init(SDL_INIT_VIDEO) != 0) {
- LOG_ERROR("SDL_Init failed: %s", SDL_GetError());
+ LOG_ERROR("sdl: SDL_Init failed: %s", SDL_GetError());
return false;
}