diff --git a/Quake/host.c b/Quake/host.c index 42b98795..c4e05ed3 100644 --- a/Quake/host.c +++ b/Quake/host.c @@ -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"); }