From 306d2623efc4a330b04387963245e4ed6311893e Mon Sep 17 00:00:00 2001 From: Richard Jenkins Date: Sun, 18 Jun 2017 20:47:51 +0100 Subject: [PATCH] Fix #5617, PLATFORM_MODIFIER defined twice for macOS correctly (#5633) * Fix #5617, PLATFORM_MODIFIER defined twice for macOS correctly And revert incorrect 'fix' * Remove all keyboard defines from platform.h --- src/openrct2/platform/platform.h | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/openrct2/platform/platform.h b/src/openrct2/platform/platform.h index 921c2f0641..e31a0ce265 100644 --- a/src/openrct2/platform/platform.h +++ b/src/openrct2/platform/platform.h @@ -42,11 +42,6 @@ typedef struct rct2_install_info rct2_install_info; #define CTRL 0x200 #define ALT 0x400 #define CMD 0x800 -#ifdef __APPLE__ - #define PLATFORM_MODIFIER CMD -#else - #define PLATFORM_MODIFIER CTRL -#endif typedef struct resolution { sint32 width, height;