Changeset - r19765:c75a301c158c
[Not reviewed]
master
0 1 0
frosch - 12 years ago 2012-11-13 21:40:50
frosch@openttd.org
(svn r24720) -Fix (r24715): Comparison of different height units.
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
src/station_cmd.cpp
Show inline comments
 
@@ -2591,7 +2591,7 @@ static bool SplitGroundSpriteForOverlay(
 
		/* Decide snow/desert from tile */
 
		switch (_settings_game.game_creation.landscape) {
 
			case LT_ARCTIC:
 
				snow_desert = ti->z > GetSnowLine();
 
				snow_desert = (uint)ti->z > GetSnowLine() * TILE_HEIGHT;
 
				break;
 

	
 
			case LT_TROPIC:
0 comments (0 inline, 0 general)