summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--logic/OneSixVersion.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/logic/OneSixVersion.h b/logic/OneSixVersion.h
index e4f75542..46055304 100644
--- a/logic/OneSixVersion.h
+++ b/logic/OneSixVersion.h
@@ -15,12 +15,13 @@ OpSys OpSys_fromString(QString);
#ifdef Q_OS_WIN32
#define currentSystem Os_Windows
-#elif Q_OS_MAC
- #define currentSystem Os_OSX
#else
- #define currentSystem Os_Linux
+ #ifdef Q_OS_MAC
+ #define currentSystem Os_OSX
+ #else
+ #define currentSystem Os_Linux
+ #endif
#endif
-
enum RuleAction
{
Allow,