summaryrefslogtreecommitdiff
path: root/games/multimc/files/patch-api_logic_minecraft_OpSys.h
blob: 547bb5b25bf08b5902e6290ff4fa5e05e4d0b0df (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
--- api/logic/minecraft/OpSys.h.orig	2019-03-09 16:25:37 UTC
+++ api/logic/minecraft/OpSys.h
@@ -18,6 +18,7 @@
 enum OpSys
 {
     Os_Windows,
+	Os_FreeBSD,
     Os_Linux,
     Os_OSX,
     Os_Other
@@ -28,10 +29,10 @@ QString OpSys_toString(OpSys);
 
 #ifdef Q_OS_WIN32
 #define currentSystem Os_Windows
-#else
-#ifdef Q_OS_MAC
+#elif Q_OS_MAC
 #define currentSystem Os_OSX
+#elif defined Q_OS_FREEBSD
+#define currentSystem Os_FreeBSD
 #else
 #define currentSystem Os_Linux
-#endif
-#endif
\ No newline at end of file
+#endif