[Scummvm-git-logs] scummvm master -> a3706e09763cc1b1f95b9c1f3e8a3446adf51138
digitall
noreply at scummvm.org
Sun Sep 17 13:46:27 UTC 2023
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
a3706e0976 BACKENDS: SDL: Fix Undefined Preprocessor Symbol GCC Compiler Warning
Commit: a3706e09763cc1b1f95b9c1f3e8a3446adf51138
https://github.com/scummvm/scummvm/commit/a3706e09763cc1b1f95b9c1f3e8a3446adf51138
Author: D G Turner (digitall at scummvm.org)
Date: 2023-09-17T14:46:12+01:00
Commit Message:
BACKENDS: SDL: Fix Undefined Preprocessor Symbol GCC Compiler Warning
Changed paths:
backends/platform/sdl/sdl.cpp
diff --git a/backends/platform/sdl/sdl.cpp b/backends/platform/sdl/sdl.cpp
index 63efd30edcb..d484926c274 100644
--- a/backends/platform/sdl/sdl.cpp
+++ b/backends/platform/sdl/sdl.cpp
@@ -1021,9 +1021,9 @@ _s(
"| Shortcut | Description\n"
"| --------------------------------\n"
"| `Ctrl+F5` -- Displays the Global Main Menu\n")
-#ifdef MACOSX
+#if defined(MACOSX)
_s("| `Cmd+q` -- Quit (macOS)\n")
-#elif WIN32
+#elif defined(WIN32)
_s("| `Alt+F4` -- Quit (Windows)\n")
#else
_s("| `Ctrl+q` -- Quit (Linux/Unix)\n")
More information about the Scummvm-git-logs
mailing list