From 22162dda83640da7c5c5cded45909a164895b656 Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Sun, 30 Jun 2019 18:48:11 -0700 Subject: [PATCH] Fix runtime SDL version report --- app/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/main.cpp b/app/main.cpp index af1daa9a..4bb2b324 100644 --- a/app/main.cpp +++ b/app/main.cpp @@ -319,7 +319,7 @@ int main(int argc, char *argv[]) SDL_GetVersion(&runtimeVersion); SDL_LogInfo(SDL_LOG_CATEGORY_APPLICATION, "Running with SDL %d.%d.%d", - runtimeVersion.major, runtimeVersion.minor, compileVersion.patch); + runtimeVersion.major, runtimeVersion.minor, runtimeVersion.patch); // Allow the display to sleep by default. We will manually use SDL_DisableScreenSaver() // and SDL_EnableScreenSaver() when appropriate. This hint must be set before