diff options
author | planetmaker <planetmaker@openttd.org> | 2011-04-03 08:22:14 +0000 |
---|---|---|
committer | planetmaker <planetmaker@openttd.org> | 2011-04-03 08:22:14 +0000 |
commit | 75ab1f18f87baeb577b5cad7e62ef528d7d37a6e (patch) | |
tree | 09ea7ea3591506b50438ef4fed4af43e9eafd11d /src | |
parent | 0babca04f2e0715aba59ad339c758ed592b44398 (diff) | |
download | openttd-75ab1f18f87baeb577b5cad7e62ef528d7d37a6e.tar.xz |
(svn r22293) -Add: Allow docks to feature company colour (add another pony for the firs(t) fish&chips foundry)
Diffstat (limited to 'src')
-rw-r--r-- | src/table/station_land.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/table/station_land.h b/src/table/station_land.h index 8b3b456c0..47eb31723 100644 --- a/src/table/station_land.h +++ b/src/table/station_land.h @@ -364,32 +364,32 @@ static const DrawTileSeqStruct _station_display_datas_74[] = { }; static const DrawTileSeqStruct _station_display_datas_76[] = { - TILE_SEQ_LINE( 0, 4, 0, 16, 8, 8, SPR_DOCK_SLOPE_NE) + TILE_SEQ_LINE( 0, 4, 0, 16, 8, 8, SPR_DOCK_SLOPE_NE | (1U << PALETTE_MODIFIER_COLOUR)) TILE_SEQ_END() }; static const DrawTileSeqStruct _station_display_datas_77[] = { - TILE_SEQ_LINE( 4, 0, 0, 8, 16, 8, SPR_DOCK_SLOPE_SE) + TILE_SEQ_LINE( 4, 0, 0, 8, 16, 8, SPR_DOCK_SLOPE_SE | (1U << PALETTE_MODIFIER_COLOUR)) TILE_SEQ_END() }; static const DrawTileSeqStruct _station_display_datas_78[] = { - TILE_SEQ_LINE( 0, 4, 0, 16, 8, 8, SPR_DOCK_SLOPE_SW) + TILE_SEQ_LINE( 0, 4, 0, 16, 8, 8, SPR_DOCK_SLOPE_SW | (1U << PALETTE_MODIFIER_COLOUR)) TILE_SEQ_END() }; static const DrawTileSeqStruct _station_display_datas_79[] = { - TILE_SEQ_LINE( 4, 0, 0, 8, 16, 8, SPR_DOCK_SLOPE_NW) + TILE_SEQ_LINE( 4, 0, 0, 8, 16, 8, SPR_DOCK_SLOPE_NW | (1U << PALETTE_MODIFIER_COLOUR)) TILE_SEQ_END() }; static const DrawTileSeqStruct _station_display_datas_80[] = { - TILE_SEQ_LINE( 0, 4, 0, 16, 8, 8, SPR_DOCK_FLAT_X) + TILE_SEQ_LINE( 0, 4, 0, 16, 8, 8, SPR_DOCK_FLAT_X | (1U << PALETTE_MODIFIER_COLOUR)) TILE_SEQ_END() }; static const DrawTileSeqStruct _station_display_datas_81[] = { - TILE_SEQ_LINE( 4, 0, 0, 8, 16, 8, SPR_DOCK_FLAT_Y) + TILE_SEQ_LINE( 4, 0, 0, 8, 16, 8, SPR_DOCK_FLAT_Y | (1U << PALETTE_MODIFIER_COLOUR)) TILE_SEQ_END() }; |