From eb1e6c19ad233a4e1c1b5e37dc59f02db0692212 Mon Sep 17 00:00:00 2001 From: belugas Date: Thu, 15 Mar 2007 01:17:20 +0000 Subject: (svn r9190) -Fix: Little typo in an enum. --- src/industry_cmd.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/industry_cmd.cpp') diff --git a/src/industry_cmd.cpp b/src/industry_cmd.cpp index 967f78456..2352c52da 100644 --- a/src/industry_cmd.cpp +++ b/src/industry_cmd.cpp @@ -359,7 +359,7 @@ static void TransportIndustryGoods(TileIndex tile) if (am != 0) { uint newgfx = GetIndustryTileSpec(GetIndustryGfx(tile))->anim_production; - if (newgfx != INDUTILE_NOAMIN) { + if (newgfx != INDUTILE_NOANIM) { ResetIndustryConstructionStage(tile); SetIndustryCompleted(tile, true); SetIndustryGfx(tile, newgfx); @@ -646,7 +646,7 @@ static void TileLoop_Industry(TileIndex tile) TransportIndustryGoods(tile); newgfx = GetIndustryTileSpec(GetIndustryGfx(tile))->anim_next; - if (newgfx != INDUTILE_NOAMIN) { + if (newgfx != INDUTILE_NOANIM) { ResetIndustryConstructionStage(tile); SetIndustryGfx(tile, newgfx); MarkTileDirtyByTile(tile); -- cgit v1.2.3-54-g00ecf