From 9371ac13078df51aa920ecaa99485b0b4081513a Mon Sep 17 00:00:00 2001 From: glx Date: Fri, 19 Oct 2007 21:14:38 +0000 Subject: (svn r11302) -Fix (r9520): typo --- 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 7200e9e4e..80d8ccc3d 100644 --- a/src/industry_cmd.cpp +++ b/src/industry_cmd.cpp @@ -1007,7 +1007,7 @@ static void ProduceIndustryGoods(Industry *i) if ((i->counter & 0xFF) == 0) { if (HASBIT(indsp->callback_flags, CBM_IND_PRODUCTION_256_TICKS)) IndustryProductionCallback(i, 1); - IndustyBehaviour indbehav = indsp->behaviour; + IndustryBehaviour indbehav = indsp->behaviour; i->produced_cargo_waiting[0] = min(0xffff, i->produced_cargo_waiting[0] + i->production_rate[0]); i->produced_cargo_waiting[1] = min(0xffff, i->produced_cargo_waiting[1] + i->production_rate[1]); @@ -1226,7 +1226,7 @@ static bool CheckIfIndustryTilesAreFree(TileIndex tile, const IndustryTileTable const IndustryTileSpec *its = GetIndustryTileSpec(gfx); - IndustyBehaviour ind_behav = GetIndustrySpec(type)->behaviour; + IndustryBehaviour ind_behav = GetIndustrySpec(type)->behaviour; /* Perform land/water check if not disabled */ if (!HASBIT(its->slopes_refused, 5) && (IsWaterTile(cur_tile) == !(ind_behav & INDUSTRYBEH_BUILT_ONWATER))) return false; -- cgit v1.2.3-54-g00ecf