src/clear_cmd.cpp
branchnoai
changeset 9505 9711235f5693
parent 6574 e1d1a12faaf7
child 6683 7ec558346172
--- a/src/clear_cmd.cpp	Thu Mar 22 01:47:14 2007 +0000
+++ b/src/clear_cmd.cpp	Thu Mar 22 02:32:43 2007 +0000
@@ -16,6 +16,7 @@
 #include "tunnel_map.h"
 #include "bridge_map.h"
 #include "bridge.h"
+#include "landscape.h"
 #include "variables.h"
 #include "table/sprites.h"
 #include "unmovable_map.h"
@@ -620,7 +621,7 @@
 /* convert into snowy tiles */
 static void TileLoopClearAlps(TileIndex tile)
 {
-	int k = GetTileZ(tile) - _opt.snow_line + TILE_HEIGHT;
+	int k = GetTileZ(tile) - GetSnowLine() + TILE_HEIGHT;
 
 	if (k < 0) { // well below the snow line
 		if (!IsClearGround(tile, CLEAR_SNOW)) return;