diff options
| author | Abhinav Prasai <abhinav.prsai@gmail.com> | 2025-11-23 02:16:17 +0000 |
|---|---|---|
| committer | Abhinav Prasai <abhinav.prsai@gmail.com> | 2025-11-23 02:16:17 +0000 |
| commit | 5d5f1c0ad39481cd11960c0f25c1d7c5318fef6d (patch) | |
| tree | aa66cb374ab002f650cc4dfd4e18b7f13ac75395 /src/sdl.c | |
| parent | 3ff5fe71a7c5cba9d4f4706ee0364503d25fefe5 (diff) | |
add engine (no webkit yet, only tab support)
Diffstat (limited to 'src/sdl.c')
| -rw-r--r-- | src/sdl.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; } |
