(svn r12149) -Codechange: Merge 'ground_sprite' and 'ground_pal' of DrawTileSprites into one PalSpriteID
This commit is contained in:
@@ -27,10 +27,10 @@ static const DrawTileSeqStruct _depot_gfx_NW[] = {
|
||||
};
|
||||
|
||||
static const DrawTileSprites _depot_gfx_table[] = {
|
||||
{ SPR_FLAT_GRASS_TILE, PAL_NONE, _depot_gfx_NE },
|
||||
{ SPR_RAIL_TRACK_Y, PAL_NONE, _depot_gfx_SE },
|
||||
{ SPR_RAIL_TRACK_X, PAL_NONE, _depot_gfx_SW },
|
||||
{ SPR_FLAT_GRASS_TILE, PAL_NONE, _depot_gfx_NW }
|
||||
{ {SPR_FLAT_GRASS_TILE, PAL_NONE}, _depot_gfx_NE },
|
||||
{ {SPR_RAIL_TRACK_Y, PAL_NONE}, _depot_gfx_SE },
|
||||
{ {SPR_RAIL_TRACK_X, PAL_NONE}, _depot_gfx_SW },
|
||||
{ {SPR_FLAT_GRASS_TILE, PAL_NONE}, _depot_gfx_NW }
|
||||
};
|
||||
|
||||
|
||||
@@ -47,8 +47,8 @@ static const DrawTileSeqStruct _waypoint_gfx_Y[] = {
|
||||
};
|
||||
|
||||
static const DrawTileSprites _waypoint_gfx_table[] = {
|
||||
{ SPR_RAIL_TRACK_X, PAL_NONE, _waypoint_gfx_X },
|
||||
{ SPR_RAIL_TRACK_Y, PAL_NONE, _waypoint_gfx_Y }
|
||||
{ {SPR_RAIL_TRACK_X, PAL_NONE}, _waypoint_gfx_X },
|
||||
{ {SPR_RAIL_TRACK_Y, PAL_NONE}, _waypoint_gfx_Y }
|
||||
};
|
||||
|
||||
#undef TILE_SEQ_LINE
|
||||
|
Reference in New Issue
Block a user