mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Merge branch 'version-string-develop' into 'master'
Add DEVELOP build flag to version string See merge request STJr/SRB2!401
This commit is contained in:
commit
f70a023bce
1 changed files with 6 additions and 1 deletions
|
|
@ -3440,7 +3440,7 @@ static void Command_Version_f(void)
|
||||||
#elif defined(__linux__)
|
#elif defined(__linux__)
|
||||||
CONS_Printf("Linux ");
|
CONS_Printf("Linux ");
|
||||||
#elif defined(MACOSX)
|
#elif defined(MACOSX)
|
||||||
CONS_Printf("macOS" );
|
CONS_Printf("macOS ");
|
||||||
#elif defined(UNIXCOMMON)
|
#elif defined(UNIXCOMMON)
|
||||||
CONS_Printf("Unix (Common) ");
|
CONS_Printf("Unix (Common) ");
|
||||||
#else
|
#else
|
||||||
|
|
@ -3465,6 +3465,11 @@ static void Command_Version_f(void)
|
||||||
CONS_Printf("\x85" "DEBUG " "\x80");
|
CONS_Printf("\x85" "DEBUG " "\x80");
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
// DEVELOP build
|
||||||
|
#ifdef DEVELOP
|
||||||
|
CONS_Printf("\x87" "DEVELOP " "\x80");
|
||||||
|
#endif
|
||||||
|
|
||||||
CONS_Printf("\n");
|
CONS_Printf("\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue