summaryrefslogtreecommitdiffstats
path: root/games/multimc/files/patch-launcher_minecraft_OpSys.h
diff options
context:
space:
mode:
Diffstat (limited to 'games/multimc/files/patch-launcher_minecraft_OpSys.h')
-rw-r--r--games/multimc/files/patch-launcher_minecraft_OpSys.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/games/multimc/files/patch-launcher_minecraft_OpSys.h b/games/multimc/files/patch-launcher_minecraft_OpSys.h
new file mode 100644
index 0000000..21899b8
--- /dev/null
+++ b/games/multimc/files/patch-launcher_minecraft_OpSys.h
@@ -0,0 +1,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