summaryrefslogtreecommitdiff
path: root/src/table/station_land.h
diff options
context:
space:
mode:
authorplanetmaker <planetmaker@openttd.org>2011-10-07 07:56:30 +0000
committerplanetmaker <planetmaker@openttd.org>2011-10-07 07:56:30 +0000
commit765588f699dfd5c14b812ac97829305b5831b125 (patch)
treeecb4e63481df9c77baaffa5be9daa7a650b9188c /src/table/station_land.h
parent8a41530585402c7850ce68542ec1ea551d2cb277 (diff)
downloadopenttd-765588f699dfd5c14b812ac97829305b5831b125.tar.xz
(svn r23010) -Add [FS#4797]: Support company colour for the airports' jetways (zeroeight)
Diffstat (limited to 'src/table/station_land.h')
-rw-r--r--src/table/station_land.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/table/station_land.h b/src/table/station_land.h
index 47eb31723..3327dab5d 100644
--- a/src/table/station_land.h
+++ b/src/table/station_land.h
@@ -169,23 +169,23 @@ static const DrawTileSeqStruct _station_display_hangar_se[] = {
};
static const DrawTileSeqStruct _station_display_jetway_1[] = {
- TILE_SEQ_LINE( 7, 11, 0, 3, 3, 14, SPR_AIRPORT_JETWAY_1)
+ TILE_SEQ_LINE( 7, 11, 0, 3, 3, 14, SPR_AIRPORT_JETWAY_1 | (1U << PALETTE_MODIFIER_COLOUR))
TILE_SEQ_LINE( 0, 0, 0, 16, 1, 6, SPR_AIRPORT_FENCE_X | (1U << PALETTE_MODIFIER_COLOUR))
TILE_SEQ_END()
};
static const DrawTileSeqStruct _station_display_jetway_2[] = {
- TILE_SEQ_LINE( 2, 7, 0, 3, 3, 14, SPR_AIRPORT_JETWAY_2)
+ TILE_SEQ_LINE( 2, 7, 0, 3, 3, 14, SPR_AIRPORT_JETWAY_2 | (1U << PALETTE_MODIFIER_COLOUR))
TILE_SEQ_END()
};
static const DrawTileSeqStruct _station_display_jetway_3[] = {
- TILE_SEQ_LINE( 3, 2, 0, 3, 3, 14, SPR_AIRPORT_JETWAY_3)
+ TILE_SEQ_LINE( 3, 2, 0, 3, 3, 14, SPR_AIRPORT_JETWAY_3 | (1U << PALETTE_MODIFIER_COLOUR))
TILE_SEQ_END()
};
static const DrawTileSeqStruct _station_display_passenger_tunnel[] = {
- TILE_SEQ_LINE( 0, 8, 0, 14, 3, 14, SPR_AIRPORT_PASSENGER_TUNNEL)
+ TILE_SEQ_LINE( 0, 8, 0, 14, 3, 14, SPR_AIRPORT_PASSENGER_TUNNEL | (1U << PALETTE_MODIFIER_COLOUR))
TILE_SEQ_END()
};