mirror of
https://github.com/yquake2/xatrix.git
synced 2025-02-23 12:21:37 +00:00
Added OpenBSD and MacOS X to savegame.c
Now the OS field will be correct when dealing with OSX and OpenBSD
This commit is contained in:
parent
18b4b74f56
commit
3ef341a21a
1 changed files with 4 additions and 0 deletions
|
@ -66,6 +66,10 @@
|
|||
*/
|
||||
#if defined(__FreeBSD__)
|
||||
#define OS "FreeBSD"
|
||||
#elif defined(__APPLE__)
|
||||
#define OS "MacOS X"
|
||||
#elif defined(__OpenBSD__)
|
||||
#define OS "OpenBSD"
|
||||
#elif defined(__linux__)
|
||||
#define OS "Linux"
|
||||
#elif defined(_WIN32)
|
||||
|
|
Loading…
Reference in a new issue