1
0
Fork 0

(svn r11050) -Codechange: Use the translated gfx, not the original one.

release/0.6
belugas 2007-09-06 03:02:38 +00:00
parent 8a161d1488
commit 518fd6aa4d
1 changed files with 2 additions and 1 deletions

View File

@ -1196,7 +1196,8 @@ static bool CheckIfIndustryTilesAreFree(TileIndex tile, const IndustryTileTable
if (!EnsureNoVehicle(cur_tile)) return false;
if (MayHaveBridgeAbove(cur_tile) && IsBridgeAbove(cur_tile)) return false;
const IndustryTileSpec *its = GetIndustryTileSpec(it->gfx);
const IndustryTileSpec *its = GetIndustryTileSpec(gfx);
IndustyBehaviour ind_behav = GetIndustrySpec(type)->behaviour;
if (HASBIT(its->callback_flags, CBM_INDT_SHAPE_CHECK)) {