Changeset - r18315:34423392c727
[Not reviewed]
master
0 1 0
yexo - 13 years ago 2011-11-08 17:40:48
yexo@openttd.org
(svn r23161) -Fix (r23154): don't convert pointer to bool but actually check the grf_version variable
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
src/newgrf_airporttiles.cpp
Show inline comments
 
@@ -195,7 +195,7 @@ static uint32 AirportTileGetVariable(con
 
		case 0x44: return GetAnimationFrame(tile);
 

	
 
		/* Land info of nearby tiles */
 
		case 0x60: return GetNearbyAirportTileInformation(parameter, tile, st->index, object->grffile);
 
		case 0x60: return GetNearbyAirportTileInformation(parameter, tile, st->index, object->grffile->grf_version >= 8);
 

	
 
		/* Animation stage of nearby tiles */
 
		case 0x61:
0 comments (0 inline, 0 general)