Changeset - r21964:18689b20492a
[Not reviewed]
master
0 1 0
frosch - 10 years ago 2015-01-17 15:00:02
frosch@openttd.org
(svn r27119) -Fix: Action 7/9 condition 0A failed for present, but disabled, NewGRF.
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
src/newgrf.cpp
Show inline comments
 
@@ -6095,7 +6095,7 @@ static void SkipIf(ByteReader *buf)
 

	
 
			case 0x0A: // GRFID is not nor will be active
 
				/* This is the only condtype that doesn't get ignored if the GRFID is not found */
 
				result = c == NULL || c->flags == GCS_DISABLED || c->status == GCS_NOT_FOUND;
 
				result = c == NULL || c->status == GCS_DISABLED || c->status == GCS_NOT_FOUND;
 
				break;
 

	
 
			default: grfmsg(1, "SkipIf: Unsupported GRF condition type %02X. Ignoring", condtype); return;
0 comments (0 inline, 0 general)