Skip to content

Commit

Permalink
whitespace correction
Browse files Browse the repository at this point in the history
  • Loading branch information
lnussel committed May 8, 2009
1 parent b35c63f commit abda6d9
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions code/qcommon/cvar.c
Expand Up @@ -305,9 +305,9 @@ cvar_t *Cvar_Get( const char *var_name, const char *var_value, int flags ) {
cvar_t *var;
long hash;

if ( !var_name || ! var_value ) {
if ( !var_name || ! var_value ) {
Com_Error( ERR_FATAL, "Cvar_Get: NULL parameter" );
}
}

if ( !Cvar_ValidateString( var_name ) ) {
Com_Printf("invalid cvar name string: %s\n", var_name );
Expand Down Expand Up @@ -615,15 +615,15 @@ void Cvar_SetCheatState( void ) {
// set all default vars to the safe value
for ( var = cvar_vars ; var ; var = var->next ) {
if ( var->flags & CVAR_CHEAT ) {
// the CVAR_LATCHED|CVAR_CHEAT vars might escape the reset here
// because of a different var->latchedString
if (var->latchedString)
{
Z_Free(var->latchedString);
var->latchedString = NULL;
}
// the CVAR_LATCHED|CVAR_CHEAT vars might escape the reset here
// because of a different var->latchedString
if (var->latchedString)
{
Z_Free(var->latchedString);
var->latchedString = NULL;
}
if (strcmp(var->resetString,var->string)) {
Cvar_Set( var->name, var->resetString );
Cvar_Set( var->name, var->resetString );
}
}
}
Expand Down

0 comments on commit abda6d9

Please sign in to comment.