# HG changeset patch # User belugas # Date 1154829117 0 # Node ID f5e698452d348de94cb407c611297697d40eddb1 # Parent 5f13a2cbb108e777b65c89eb94c2a2341081936b (svn r5785) Fix(5771) : Silenced a warning in MSVC that prevented from compiling. diff -r 5f13a2cbb108 -r f5e698452d34 table/track_land.h --- a/table/track_land.h Sat Aug 05 21:59:07 2006 +0000 +++ b/table/track_land.h Sun Aug 06 01:51:57 2006 +0000 @@ -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 } };