summaryrefslogtreecommitdiffstatshomepage
path: root/src/tools/testkeys.cpp
diff options
context:
space:
mode:
author Michael Zapf <github@mizapf.de>2026-04-17 15:21:32 +0200
committer Michael Zapf <github@mizapf.de>2026-04-17 15:21:32 +0200
commitd3d82c776740320dc29eca249f8cd5b1ae4d1b40 (patch)
tree96d2ab1e717f8fa20f73713a95c3f4ce3fecb4e8 /src/tools/testkeys.cpp
parent0b24b4c2f6052cea7d612408f4baa58ed63ee290 (diff)
parent0034dde186fa6f594125ac3dc2b5977f18e7a062 (diff)
Merge branch 'master' into floppysound
Diffstat (limited to 'src/tools/testkeys.cpp')
-rw-r--r--src/tools/testkeys.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/tools/testkeys.cpp b/src/tools/testkeys.cpp
index c0f39aed09d..2827b93107b 100644
--- a/src/tools/testkeys.cpp
+++ b/src/tools/testkeys.cpp
@@ -9,16 +9,16 @@
//
//============================================================
-#ifdef SDLMAME_SDL3
+#if defined(SDLMAME_SDL3)
#include <SDL3/SDL.h>
#include <SDL3/SDL_main.h>
-#endif
+#endif // defined(SDLMAME_SDL3)
#include "osdcore.h"
-#ifndef SDLMAME_SDL3
+#if !defined(SDLMAME_SDL3)
#include "SDL2/SDL.h"
-#endif
+#endif // !defined(SDLMAME_SDL3)
#include <iostream>
#include <string>