summaryrefslogtreecommitdiff
path: root/town_cmd.c
diff options
context:
space:
mode:
authorludde <ludde@openttd.org>2005-07-15 16:29:30 +0000
committerludde <ludde@openttd.org>2005-07-15 16:29:30 +0000
commit31fd5b2768685940ab6340a51fed1813fcc40124 (patch)
treeafacf4ed6200adde55152814663d9368bef06de6 /town_cmd.c
parent6246619185ae6e240dabb438a3861750038e0639 (diff)
downloadopenttd-31fd5b2768685940ab6340a51fed1813fcc40124.tar.xz
(svn r2574) Fix: AnimatedTile leak in town_cmd.c (this one has probably been here since day 1)
Diffstat (limited to 'town_cmd.c')
-rw-r--r--town_cmd.c15
1 files changed, 10 insertions, 5 deletions
diff --git a/town_cmd.c b/town_cmd.c
index ad394b620..788765374 100644
--- a/town_cmd.c
+++ b/town_cmd.c
@@ -71,14 +71,14 @@ typedef struct DrawTownTileStruct {
#include "table/town_land.h"
-static void TownDrawTileProc1(TileInfo *ti)
+static void TownDrawHouseLift(TileInfo *ti)
{
AddChildSpriteScreen(0x5A3, 0xE, 0x3C - (_m[ti->tile].owner&0x7F));
}
typedef void TownDrawTileProc(TileInfo *ti);
static TownDrawTileProc * const _town_draw_tile_procs[1] = {
- TownDrawTileProc1
+ TownDrawHouseLift
};
@@ -159,7 +159,14 @@ static void AnimateTile_Town(TileIndex tile)
if (_tick_counter & 3)
return;
- assert(_m[tile].m4 == 4 || _m[tile].m4 == 5);
+ // If the house is not one with a lift anymore, then stop this animating.
+ // Not exactly sure when this happens, but probably when a house changes.
+ // Before this was just a return...so it'd leak animated tiles..
+ // That bug seems to have been here since day 1??
+ if (!(_housetype_extra_flags[_m[tile].m4] & 0x20)) {
+ DeleteAnimatedTile(tile);
+ return;
+ }
if (!((old=_m[tile].owner)&0x80)) {
_m[tile].owner |= 0x80;
@@ -2085,5 +2092,3 @@ void AfterLoadTown(void)
const ChunkHandler _town_chunk_handlers[] = {
{ 'CITY', Save_TOWN, Load_TOWN, CH_ARRAY | CH_LAST},
};
-
-