From 5d5f1c0ad39481cd11960c0f25c1d7c5318fef6d Mon Sep 17 00:00:00 2001 From: Abhinav Prasai Date: Sun, 23 Nov 2025 02:16:17 +0000 Subject: add engine (no webkit yet, only tab support) --- src/sdl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/sdl.c') 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; } -- cgit v1.2.3