diff --git a/src/nostalgia/core/sdl/core.cpp b/src/nostalgia/core/sdl/core.cpp index 42273cba4..9746875d5 100644 --- a/src/nostalgia/core/sdl/core.cpp +++ b/src/nostalgia/core/sdl/core.cpp @@ -30,6 +30,7 @@ ox::Error run(Context *ctx) { auto id = ctx->windowerData(); // try adaptive vsync if (SDL_GL_SetSwapInterval(-1) < 0) { + oxTrace("nostalgia::core::sdl", "Could not enable adaptive vsync, falling back on vsync"); SDL_GL_SetSwapInterval(1); // fallback on normal vsync } for (auto running = true; running;) {