File diff r18790:e07f88e01903 → r18791:b546d3612dd0
src/saveload/game_sl.cpp
Show inline comments
 
@@ -158,6 +158,13 @@ static void Load_GSTR()
 
		*_current_data->raw_strings.Append() = ls;
 
	}
 

	
 
	/* If there were no strings in the savegame, set GameStrings to NULL */
 
	if (_current_data->raw_strings.Length() == 0) {
 
		delete _current_data;
 
		_current_data = NULL;
 
		return;
 
	}
 

	
 
	_current_data->Compile();
 
	ReconsiderGameScriptLanguage();
 
}