changeset 4229:46e03fe826bc draft

(svn r5785) Fix(5771) : Silenced a warning in MSVC that prevented from compiling.
author belugas <belugas@openttd.org>
date Sun, 06 Aug 2006 01:51:57 +0000
parents f7c136bb952e
children e0f44f66df80
files table/track_land.h
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/table/track_land.h
+++ b/table/track_land.h
@@ -26,7 +26,7 @@
 	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 @@
 	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 }
 };