diff -r de4993fa3d98 -r 9711235f5693 src/clear_cmd.cpp --- 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;