Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/WolfireGames/overgrowth.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Danielsson <max@autious.net>2022-05-03 10:40:00 +0300
committerMax Danielsson <max@autious.net>2022-05-03 10:40:00 +0300
commit0cdd7158bad853dd5eaff6aa59a3ea8b8fab1978 (patch)
tree6eacfd94a4b150f27851931b364edb93668d6626
parent49bcf93476cb0c94e836406b4cc861e0933a6dbb (diff)
Define PLATFORM_UNIX if we're on __APPLE__
-rw-r--r--Source/Compat/platform.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Compat/platform.h b/Source/Compat/platform.h
index 5a82436f..aeeb1a73 100644
--- a/Source/Compat/platform.h
+++ b/Source/Compat/platform.h
@@ -35,7 +35,7 @@
#endif
// Check unix
-#if defined __unix__
+#if defined __unix__ || defined __APPLE__
#define PLATFORM_UNIX 1
#endif