summaryrefslogtreecommitdiffstats
path: root/games/multimc/files/patch-launcher_minecraft_OpSys.h
blob: 21899b813a92a4123bab96c4d41241f5dd3e31b0 (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
--- launcher/minecraft/OpSys.h.orig	2021-09-08 22:27:46 UTC
+++ launcher/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