From d373394882283663f59f43384084011dead794e3 Mon Sep 17 00:00:00 2001 From: Tim Angus Date: Tue, 7 Oct 2025 18:04:19 +0100 Subject: [PATCH] Use PRODUCT_NAME in config file comments --- code/qcommon/common.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/qcommon/common.c b/code/qcommon/common.c index c5b1f00d..3870bb3b 100644 --- a/code/qcommon/common.c +++ b/code/qcommon/common.c @@ -2555,7 +2555,7 @@ static void Com_WriteCDKey( const char *filename, const char *ikey ) { FS_Write( key, 16, f ); - FS_Printf( f, "\n// generated by quake, do not modify\r\n" ); + FS_Printf( f, "\n// generated by " PRODUCT_NAME ", do not modify\r\n" ); FS_Printf( f, "// Do not give this file to ANYONE.\r\n" ); FS_Printf( f, "// id Software and Activision will NOT ask you to send this file to them.\r\n"); @@ -2927,7 +2927,7 @@ void Com_WriteConfigToFile( const char *filename ) { return; } - FS_Printf (f, "// generated by quake, do not modify\n"); + FS_Printf (f, "// generated by " PRODUCT_NAME ", do not modify\n"); Key_WriteBindings (f); Cvar_WriteVariables (f); FS_FCloseFile( f );