diff options
author | Petr Mrázek <peterix@gmail.com> | 2013-08-07 01:38:18 +0200 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2013-08-07 01:38:18 +0200 |
commit | afaa1dc223ec87b685778ee0aed81cb6caaa05c7 (patch) | |
tree | 4e1e6589d56ba9bc6984547d158d413a0495272f /backend/OneSixVersion.h | |
parent | 091b7502cfc1bc01a1abd68a0fb9a0b2693a4658 (diff) | |
download | PrismLauncher-afaa1dc223ec87b685778ee0aed81cb6caaa05c7.tar.gz PrismLauncher-afaa1dc223ec87b685778ee0aed81cb6caaa05c7.tar.bz2 PrismLauncher-afaa1dc223ec87b685778ee0aed81cb6caaa05c7.zip |
Get rid of QNAM (now subclassed and less needy). Basic LWJGL download and extraction.
Diffstat (limited to 'backend/OneSixVersion.h')
-rw-r--r-- | backend/OneSixVersion.h | 17 |
1 files changed, 4 insertions, 13 deletions
diff --git a/backend/OneSixVersion.h b/backend/OneSixVersion.h index 160d0426..1f8090ab 100644 --- a/backend/OneSixVersion.h +++ b/backend/OneSixVersion.h @@ -13,23 +13,14 @@ enum OpSys OpSys OpSys_fromString(QString); -#ifdef Q_OS_MAC - #define currentSystem Os_OSX -#endif - -#ifdef Q_OS_LINUX - #define currentSystem Os_Linux -#endif - #ifdef Q_OS_WIN32 #define currentSystem Os_Windows +#elif Q_OS_MAC + #define currentSystem Os_OSX +#else + #define currentSystem Os_Linux #endif -#ifndef currentSystem - #define currentSystem Os_Other -#endif - - enum RuleAction { Allow, |