summaryrefslogtreecommitdiff
path: root/clear_cmd.c
diff options
context:
space:
mode:
authortruelight <truelight@openttd.org>2005-03-26 12:08:56 +0000
committertruelight <truelight@openttd.org>2005-03-26 12:08:56 +0000
commitcef2e24ec4178a4ed84accf719cccb31a54978bf (patch)
treec02853561c776855635c274782cb7509c941216b /clear_cmd.c
parentf89984642e98786bfb7daf6e7b787ec55251579a (diff)
downloadopenttd-cef2e24ec4178a4ed84accf719cccb31a54978bf.tar.xz
(svn r2075) -Fix: added missing breaks in switches
-Fix: added const for a const variable
Diffstat (limited to 'clear_cmd.c')
-rw-r--r--clear_cmd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/clear_cmd.c b/clear_cmd.c
index 703c5d16d..fa3c4772d 100644
--- a/clear_cmd.c
+++ b/clear_cmd.c
@@ -549,7 +549,7 @@ void TileLoopClearHelper(TileIndex tile)
{
byte img_1;
byte img_2;
- static byte img_by_map5[] = { 0, 0, 0, 2, 1, 1, 0, 0 };
+ static const byte img_by_map5[] = { 0, 0, 0, 2, 1, 1, 0, 0 };
TileIndex dirty = INVALID_TILE;
switch (GetTileType(tile)) {