summaryrefslogtreecommitdiff
path: root/table
diff options
context:
space:
mode:
authorbelugas <belugas@openttd.org>2006-08-06 01:51:57 +0000
committerbelugas <belugas@openttd.org>2006-08-06 01:51:57 +0000
commit5280b9302cc650d9c6cee5641e798204499acf7f (patch)
tree276b6b33e06e001e9d98da33b5eb9f7ad2a6e009 /table
parentf8349b0a9807217b83e09800be797fc7501a6d89 (diff)
downloadopenttd-5280b9302cc650d9c6cee5641e798204499acf7f.tar.xz
(svn r5785) Fix(5771) : Silenced a warning in MSVC that prevented from compiling.
Diffstat (limited to 'table')
-rw-r--r--table/track_land.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/table/track_land.h b/table/track_land.h
index d742b0e55..78031e840 100644
--- a/table/track_land.h
+++ b/table/track_land.h
@@ -26,7 +26,7 @@ static const DrawTileSeqStruct _depot_gfx_NW[] = {
TILE_SEQ_END()
};
-static const DrawTileSprites const _depot_gfx_table[] = {
+static const DrawTileSprites _depot_gfx_table[] = {
{ SPR_FLAT_GRASS_TILE, _depot_gfx_NE },
{ SPR_RAIL_TRACK_Y, _depot_gfx_SE },
{ SPR_RAIL_TRACK_X, _depot_gfx_SW },
@@ -46,7 +46,7 @@ static const DrawTileSeqStruct _waypoint_gfx_Y[] = {
TILE_SEQ_END()
};
-static const DrawTileSprites const _waypoint_gfx_table[] = {
+static const DrawTileSprites _waypoint_gfx_table[] = {
{ SPR_RAIL_TRACK_X, _waypoint_gfx_X },
{ SPR_RAIL_TRACK_Y, _waypoint_gfx_Y }
};