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:
parent
953cf2c44c
commit
76b3b5bc84
1 changed files with 6 additions and 6 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue