fixing format error

Signed-off-by: Peter Siegmund <developer@mars3142.org>
This commit is contained in:
2025-04-12 00:27:02 +02:00
parent 75169956ea
commit fa5b4da0f5

View File

@@ -28,7 +28,7 @@ std::vector<std::shared_ptr<UIWidget>> widgets;
SDL_AppResult SDL_AppInit(void** appstate, int argc, char* argv[]) { SDL_AppResult SDL_AppInit(void** appstate, int argc, char* argv[]) {
if(SDL_Init(SDL_INIT_VIDEO) == false) { if(SDL_Init(SDL_INIT_VIDEO) == false) {
SDL_LogError( SDL_LogError(
SDL_LOG_CATEGORY_APPLICATION, "Couldn't initialize SDL! -> $s", SDL_GetError()); SDL_LOG_CATEGORY_APPLICATION, "Couldn't initialize SDL! -> %s", SDL_GetError());
return SDL_APP_FAILURE; return SDL_APP_FAILURE;
} }