Changeset - r17983:d528d674a063
[Not reviewed]
master
0 1 0
frosch - 13 years ago 2011-08-21 14:59:05
frosch@openttd.org
(svn r22802) -Fix (r22781): Coding style.
1 file changed with 10 insertions and 10 deletions:
0 comments (0 inline, 0 general)
src/newgrf.cpp
Show inline comments
 
@@ -109,16 +109,16 @@ struct GrfProcessingState {
 
	/** Clear temporary data before processing the next file in the current loading stage */
 
	void ClearDataForNextFile()
 
	{
 
		nfo_line = 0;
 
		skip_sprites = 0;
 
		data_blocks = 0;
 

	
 
		spriteset_start = 0;
 
		spriteset_numsets = 0;
 
		spriteset_numents = 0;
 
		spriteset_feature = GSF_INVALID;
 

	
 
		memset(spritegroups, 0, sizeof(spritegroups));
 
		this->nfo_line = 0;
 
		this->skip_sprites = 0;
 
		this->data_blocks = 0;
 

	
 
		this->spriteset_start = 0;
 
		this->spriteset_numsets = 0;
 
		this->spriteset_numents = 0;
 
		this->spriteset_feature = GSF_INVALID;
 

	
 
		memset(this->spritegroups, 0, sizeof(this->spritegroups));
 
	}
 
};
 

	
0 comments (0 inline, 0 general)