(svn r9190) -Fix: Little typo in an enum.

This commit is contained in:
belugas
2007-03-15 01:17:20 +00:00
parent 33e84b2c1e
commit eb1e6c19ad
3 changed files with 179 additions and 179 deletions

View File

@@ -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);