src/table/track_land.h
changeset 9067 88f2bc991236
parent 9066 29d5a0dfc329
child 9302 4aa3c4a44b16
equal deleted inserted replaced
9066:29d5a0dfc329 9067:88f2bc991236
    25 	TILE_SEQ_LINE(SPR_RAIL_DEPOT_NW | (1 << PALETTE_MODIFIER_COLOR), 13, 2, 1, 13)
    25 	TILE_SEQ_LINE(SPR_RAIL_DEPOT_NW | (1 << PALETTE_MODIFIER_COLOR), 13, 2, 1, 13)
    26 	TILE_SEQ_END()
    26 	TILE_SEQ_END()
    27 };
    27 };
    28 
    28 
    29 static const DrawTileSprites _depot_gfx_table[] = {
    29 static const DrawTileSprites _depot_gfx_table[] = {
    30 	{ SPR_FLAT_GRASS_TILE, PAL_NONE, _depot_gfx_NE },
    30 	{ {SPR_FLAT_GRASS_TILE, PAL_NONE}, _depot_gfx_NE },
    31 	{ SPR_RAIL_TRACK_Y,    PAL_NONE, _depot_gfx_SE },
    31 	{ {SPR_RAIL_TRACK_Y,    PAL_NONE}, _depot_gfx_SE },
    32 	{ SPR_RAIL_TRACK_X,    PAL_NONE, _depot_gfx_SW },
    32 	{ {SPR_RAIL_TRACK_X,    PAL_NONE}, _depot_gfx_SW },
    33 	{ SPR_FLAT_GRASS_TILE, PAL_NONE, _depot_gfx_NW }
    33 	{ {SPR_FLAT_GRASS_TILE, PAL_NONE}, _depot_gfx_NW }
    34 };
    34 };
    35 
    35 
    36 
    36 
    37 static const DrawTileSeqStruct _waypoint_gfx_X[] = {
    37 static const DrawTileSeqStruct _waypoint_gfx_X[] = {
    38 	TILE_SEQ_LINE((1 << PALETTE_MODIFIER_COLOR) | SPR_WAYPOINT_X_1,  0,  0,  16,  5)
    38 	TILE_SEQ_LINE((1 << PALETTE_MODIFIER_COLOR) | SPR_WAYPOINT_X_1,  0,  0,  16,  5)
    45 	TILE_SEQ_LINE((1 << PALETTE_MODIFIER_COLOR) | SPR_WAYPOINT_Y_2,  11,  0, 5, 16)
    45 	TILE_SEQ_LINE((1 << PALETTE_MODIFIER_COLOR) | SPR_WAYPOINT_Y_2,  11,  0, 5, 16)
    46 	TILE_SEQ_END()
    46 	TILE_SEQ_END()
    47 };
    47 };
    48 
    48 
    49 static const DrawTileSprites _waypoint_gfx_table[] = {
    49 static const DrawTileSprites _waypoint_gfx_table[] = {
    50 	{ SPR_RAIL_TRACK_X, PAL_NONE, _waypoint_gfx_X },
    50 	{ {SPR_RAIL_TRACK_X, PAL_NONE}, _waypoint_gfx_X },
    51 	{ SPR_RAIL_TRACK_Y, PAL_NONE, _waypoint_gfx_Y }
    51 	{ {SPR_RAIL_TRACK_Y, PAL_NONE}, _waypoint_gfx_Y }
    52 };
    52 };
    53 
    53 
    54 #undef TILE_SEQ_LINE
    54 #undef TILE_SEQ_LINE
    55 #undef TILE_SEQ_END
    55 #undef TILE_SEQ_END
    56 
    56