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:
Digiku 2018-12-20 02:28:21 -05:00
commit 25f0dc7eae
1 changed files with 6 additions and 1 deletions

View File

@ -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");
} }