[Scummvm-git-logs] scummvm master -> 76b3b5bc847ce9ff6167a8794aea060640ad2cf8
bluegr
noreply at scummvm.org
Tue May 17 19:24:48 UTC 2022
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:
76b3b5bc84 COMMON: Add (missing?) indentation to defines
Commit: 76b3b5bc847ce9ff6167a8794aea060640ad2cf8
https://github.com/scummvm/scummvm/commit/76b3b5bc847ce9ff6167a8794aea060640ad2cf8
Author: Hubert Maier (raziel- at users.noreply.github.com)
Date: 2022-05-17T22:24:44+03:00
Commit Message:
COMMON: Add (missing?) indentation to defines
I´m not sure if this was intended, but it looks so wrong without indentation.
Feel free to reject if it was intended
Changed paths:
common/keyboard.h
diff --git a/common/keyboard.h b/common/keyboard.h
index f37f440db08..b3bb54eb541 100644
--- a/common/keyboard.h
+++ b/common/keyboard.h
@@ -25,12 +25,12 @@
#include "common/scummsys.h"
#if defined(__amigaos4__) || defined(__MORPHOS__)
-// KEYCODE_LESS and KEYCODE_GREATER are already defined in AmigaOS, inside
-// include/include_h/intuition/intuition.h (bug #5532)
-#if defined(KEYCODE_LESS) && defined(KEYCODE_GREATER)
-#undef KEYCODE_LESS
-#undef KEYCODE_GREATER
-#endif
+ // KEYCODE_LESS and KEYCODE_GREATER are already defined in AmigaOS and MorphOS,
+ // inside "include/include_h/intuition/intuition.h" (fixes bug #5532)
+ #if defined(KEYCODE_LESS) && defined(KEYCODE_GREATER)
+ #undef KEYCODE_LESS
+ #undef KEYCODE_GREATER
+ #endif
#endif
namespace Common {
More information about the Scummvm-git-logs
mailing list