summaryrefslogtreecommitdiff
path: root/src/industry_cmd.cpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2010-08-26 15:31:40 +0000
committerrubidium <rubidium@openttd.org>2010-08-26 15:31:40 +0000
commite2e26190d55fe5a7e053791ac9bce095b303be10 (patch)
tree94224f8433a94c28866b63347b64c3f7c8e4f201 /src/industry_cmd.cpp
parent4efa2efdbba6f08b2ee4ca3aacb2aeb792429af4 (diff)
downloadopenttd-e2e26190d55fe5a7e053791ac9bce095b303be10.tar.xz
(svn r20623) -Codechange: unify the storing of animation related information
Diffstat (limited to 'src/industry_cmd.cpp')
-rw-r--r--src/industry_cmd.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/industry_cmd.cpp b/src/industry_cmd.cpp
index b684531a3..81d84b414 100644
--- a/src/industry_cmd.cpp
+++ b/src/industry_cmd.cpp
@@ -533,7 +533,7 @@ static void AnimateTile_Industry(TileIndex tile)
{
IndustryGfx gfx = GetIndustryGfx(tile);
- if (GetIndustryTileSpec(gfx)->animation_info != 0xFFFF) {
+ if (GetIndustryTileSpec(gfx)->animation.status != ANIM_STATUS_NO_ANIMATION) {
AnimateNewIndustryTile(tile);
return;
}
@@ -1667,7 +1667,7 @@ static void DoCreateNewIndustry(Industry *i, TileIndex tile, IndustryType type,
/* it->gfx is stored in the map. But the translated ID cur_gfx is the interesting one */
IndustryGfx cur_gfx = GetTranslatedIndustryTileID(it->gfx);
const IndustryTileSpec *its = GetIndustryTileSpec(cur_gfx);
- if (its->animation_info != 0xFFFF) AddAnimatedTile(cur_tile);
+ if (its->animation.status != ANIM_STATUS_NO_ANIMATION) AddAnimatedTile(cur_tile);
}
} while ((++it)->ti.x != -0x80);