From 36f5d089dfd6181cf495259a11b60e8c116d6b46 Mon Sep 17 00:00:00 2001 From: Aaron van Geffen Date: Wed, 4 Nov 2015 18:57:13 +0900 Subject: [PATCH] Add OS X as a platform. --- src/rct2.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/rct2.h b/src/rct2.h index 0cc0d9c83a..9a98d84e81 100644 --- a/src/rct2.h +++ b/src/rct2.h @@ -91,6 +91,9 @@ typedef utf16* utf16string; #ifdef __linux__ #define OPENRCT2_PLATFORM "Linux" #endif +#ifdef __APPLE__ + #define OPENRCT2_PLATFORM "OS X" +#endif #ifndef OPENRCT2_PLATFORM #error Unknown platform! #endif