Fix newlines in Com_Error, patch by Zack Middleton (#5023)
This commit is contained in:
parent
71b8fe477d
commit
698a9c51ec
4 changed files with 8 additions and 8 deletions
|
@ -635,10 +635,10 @@ void Cvar_SetSafe( const char *var_name, const char *value )
|
|||
{
|
||||
if( value )
|
||||
Com_Error( ERR_DROP, "Restricted source tried to set "
|
||||
"\"%s\" to \"%s\"\n", var_name, value );
|
||||
"\"%s\" to \"%s\"", var_name, value );
|
||||
else
|
||||
Com_Error( ERR_DROP, "Restricted source tried to "
|
||||
"modify \"%s\"\n", var_name );
|
||||
"modify \"%s\"", var_name );
|
||||
return;
|
||||
}
|
||||
Cvar_Set( var_name, value );
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue