Use PRODUCT_NAME in config file comments

This commit is contained in:
Tim Angus 2025-10-07 18:04:19 +01:00
parent 8c19f7850d
commit d373394882

View File

@ -2555,7 +2555,7 @@ static void Com_WriteCDKey( const char *filename, const char *ikey ) {
FS_Write( key, 16, f ); 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, "// 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"); 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; 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); Key_WriteBindings (f);
Cvar_WriteVariables (f); Cvar_WriteVariables (f);
FS_FCloseFile( f ); FS_FCloseFile( f );