summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorYexo <yexo@openttd.org>2009-01-19 15:06:11 +0000
committerYexo <yexo@openttd.org>2009-01-19 15:06:11 +0000
commit8b04787d09771797520569e7bff9c570bfb26c18 (patch)
tree92978704d808ea4d5ae940118d8f47f1957d0450 /src
parent49e69399a6e8b59a4a0b2b95af7a3801585b7fb9 (diff)
downloadopenttd-8b04787d09771797520569e7bff9c570bfb26c18.tar.xz
(svn r15151) -Fix: tile 0 can now be highlighted as error tile
Diffstat (limited to 'src')
-rw-r--r--src/misc.cpp1
-rw-r--r--src/misc_gui.cpp2
-rw-r--r--src/terraform_cmd.cpp5
-rw-r--r--src/viewport.cpp6
4 files changed, 7 insertions, 7 deletions
diff --git a/src/misc.cpp b/src/misc.cpp
index 12ba72434..cdd48c293 100644
--- a/src/misc.cpp
+++ b/src/misc.cpp
@@ -70,6 +70,7 @@ void InitializeGame(uint size_x, uint size_y, bool reset_date)
_realtime_tick = 0;
_date_fract = 0;
_cur_tileloop_tile = 0;
+ _thd.redsq = INVALID_TILE;
MakeNewgameSettingsLive();
if (reset_date) {
diff --git a/src/misc_gui.cpp b/src/misc_gui.cpp
index 81a67b192..bc588a447 100644
--- a/src/misc_gui.cpp
+++ b/src/misc_gui.cpp
@@ -505,7 +505,7 @@ public:
~ErrmsgWindow()
{
- SetRedErrorSquare(0);
+ SetRedErrorSquare(INVALID_TILE);
extern StringID _switch_mode_errorstr;
_switch_mode_errorstr = INVALID_STRING_ID;
}
diff --git a/src/terraform_cmd.cpp b/src/terraform_cmd.cpp
index aa79ac993..25c193299 100644
--- a/src/terraform_cmd.cpp
+++ b/src/terraform_cmd.cpp
@@ -165,10 +165,9 @@ static CommandCost TerraformTileHeight(TerraformerState *ts, TileIndex tile, int
if ((x <= 1) || (y <= 1) || (x >= MapMaxX() - 1) || (y >= MapMaxY() - 1)) {
/*
* Determine a sensible error tile
- * Note: If x and y are both zero this will disable the error tile. (Tile 0 cannot be highlighted :( )
*/
- if ((x == 1) && (y != 0)) x = 0;
- if ((y == 1) && (x != 0)) y = 0;
+ if (x == 1) x = 0;
+ if (y == 1) y = 0;
_terraform_err_tile = TileXY(x, y);
return_cmd_error(STR_0002_TOO_CLOSE_TO_EDGE_OF_MAP);
}
diff --git a/src/viewport.cpp b/src/viewport.cpp
index 9eeb08f2b..d507772b4 100644
--- a/src/viewport.cpp
+++ b/src/viewport.cpp
@@ -878,7 +878,7 @@ static void DrawAutorailSelection(const TileInfo *ti, uint autorail_type)
static void DrawTileSelection(const TileInfo *ti)
{
/* Draw a red error square? */
- bool is_redsq = _thd.redsq != 0 && _thd.redsq == ti->tile;
+ bool is_redsq = _thd.redsq == ti->tile;
if (is_redsq) DrawTileSelectionRect(ti, PALETTE_TILE_RED_PULSATING);
/* no selection active? */
@@ -2085,8 +2085,8 @@ void SetRedErrorSquare(TileIndex tile)
_thd.redsq = tile;
if (tile != old) {
- if (tile != 0) MarkTileDirtyByTile(tile);
- if (old != 0) MarkTileDirtyByTile(old);
+ if (tile != INVALID_TILE) MarkTileDirtyByTile(tile);
+ if (old != INVALID_TILE) MarkTileDirtyByTile(old);
}
}