Changeset - r8089:b7225f082c61
[Not reviewed]
master
0 1 0
rubidium - 17 years ago 2007-12-16 22:21:34
rubidium@openttd.org
(svn r11650) -Fix: 'initialised' NewGRFs could still be deactivated in the later 'activation' pass.
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
src/newgrf.cpp
Show inline comments
 
@@ -3737,7 +3737,7 @@ static void SkipIf(byte *buf, int len)
 
		_skip_sprites = -1;
 

	
 
		/* If an action 8 hasn't been encountered yet, disable the grf. */
 
		if (_cur_grfconfig->status != GCS_ACTIVATED && _cur_grfconfig->status != GCS_INITIALISED) {
 
		if (_cur_grfconfig->status != GCS_ACTIVATED) {
 
			_cur_grfconfig->status = GCS_DISABLED;
 
		}
 
	}
0 comments (0 inline, 0 general)