From 5530d3051b00b037cad8519b64faf3b6315eb9f5 Mon Sep 17 00:00:00 2001 From: smallmodel <15067410+smallmodel@users.noreply.github.com> Date: Sat, 19 Apr 2025 21:36:58 +0200 Subject: [PATCH] Fix missing spaces between product information in the logfile --- code/qcommon/common.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/qcommon/common.c b/code/qcommon/common.c index dd60651f..4eb6322e 100644 --- a/code/qcommon/common.c +++ b/code/qcommon/common.c @@ -279,7 +279,7 @@ void QDECL Com_Printf( const char *fmt, ... ) { if(logfile) { Com_Printf( "logfile opened on %s\n", asctime( newtime ) ); - Com_Printf( "=> game is version %s\n", PRODUCT_NAME PRODUCT_VERSION_FULL PLATFORM_STRING PRODUCT_VERSION_DATE ); + Com_Printf( "=> game is version %s\n", PRODUCT_NAME " " PRODUCT_VERSION_FULL " " PLATFORM_STRING " " PRODUCT_VERSION_DATE ); Com_Printf( "=> targeting game ID %d\n", Cvar_VariableIntegerValue( "com_target_game" ) ); if ( com_logfile->integer > 1 )