mirror of
https://github.com/Shpoike/Quakespasm.git
synced 2025-02-09 01:01:07 +00:00
Fix revision string escapes.
This commit is contained in:
parent
9b023749da
commit
ef5d841e80
1 changed files with 2 additions and 2 deletions
|
@ -255,10 +255,10 @@ void Host_Version_f (void)
|
|||
Con_Printf ("Quake Version %1.2f\n", VERSION);
|
||||
Con_Printf ("QuakeSpasm Version " QUAKESPASM_VER_STRING "\n");
|
||||
#ifdef QSS_VERSION
|
||||
Con_Printf ("QSS Git Description " QSS_VERSION "\n");
|
||||
Con_Printf ("QSS Git Description " QS_STRINGIFY(QSS_VERSION) "\n");
|
||||
#endif
|
||||
#ifdef QSS_REVISION
|
||||
Con_Printf ("QSS Git Revision " QSS_REVISION "\n");
|
||||
Con_Printf ("QSS Git Revision " QS_STRINGIFY(QSS_REVISION) "\n");
|
||||
#endif
|
||||
Con_Printf ("Exe: " __TIME__ " " __DATE__ "\n");
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue