mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-03-08 23:19:40 +00:00
(svn r19450) -Fix (r19197): animation callbacks for airport tiles where never called
This commit is contained in:
parent
07cc875c5a
commit
1982307a05
@ -2909,14 +2909,7 @@ static void AnimateTile_Station(TileIndex tile)
|
||||
}
|
||||
|
||||
if (IsAirport(tile)) {
|
||||
const AirportTileSpec *ats = AirportTileSpec::Get(GetStationGfx(tile));
|
||||
uint16 mask = (1 << ats->animation_speed) - 1;
|
||||
if (ats->animation_info != 0xFFFF && (_tick_counter & mask) == 0) {
|
||||
uint8 next_frame = GetStationAnimationFrame(tile) + 1;
|
||||
if (next_frame > GB(ats->animation_info, 0, 8)) next_frame = 0;
|
||||
SetStationAnimationFrame(tile, next_frame);
|
||||
MarkTileDirtyByTile(tile);
|
||||
}
|
||||
AnimateAirportTile(tile);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user