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
This commit is contained in:
Hubert Maier 2022-05-17 12:34:34 +02:00 committed by Filippos Karapetis
parent 953cf2c44c
commit 76b3b5bc84

View file

@ -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 {