summaryrefslogtreecommitdiff
path: root/src/sdl.c
diff options
context:
space:
mode:
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;
}