mirror of
https://github.com/w23/xash3d-fwgs
synced 2024-12-15 21:50:59 +01:00
engine: build: lower case operating system names
This commit is contained in:
parent
90e0c070ac
commit
bb4c73b25c
@ -64,23 +64,23 @@ const char *Q_buildos( void )
|
||||
const char *osname;
|
||||
|
||||
#if XASH_MINGW
|
||||
osname = "Win32-MinGW";
|
||||
osname = "win32-mingw";
|
||||
#elif XASH_WIN32
|
||||
osname = "Win32";
|
||||
osname = "win32";
|
||||
#elif XASH_ANDROID
|
||||
osname = "Android";
|
||||
osname = "android";
|
||||
#elif XASH_LINUX
|
||||
osname = "Linux";
|
||||
osname = "linux";
|
||||
#elif XASH_APPLE
|
||||
osname = "Apple";
|
||||
osname = "apple";
|
||||
#elif XASH_FREEBSD
|
||||
osname = "FreeBSD";
|
||||
osname = "freebsd";
|
||||
#elif XASH_NETBSD
|
||||
osname = "NetBSD";
|
||||
osname = "netbsd";
|
||||
#elif XASH_OPENBSD
|
||||
osname = "OpenBSD";
|
||||
osname = "openbsd";
|
||||
#elif XASH_EMSCRIPTEN
|
||||
osname = "Emscripten";
|
||||
osname = "emscripten";
|
||||
#else
|
||||
#error "Place your operating system name here! If this is a mistake, try to fix conditions above and report a bug"
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user