summaryrefslogtreecommitdiff
path: root/src/newgrf_industries.h
diff options
context:
space:
mode:
authoryexo <yexo@openttd.org>2010-10-19 21:00:45 +0000
committeryexo <yexo@openttd.org>2010-10-19 21:00:45 +0000
commit9373ee71d999a08c51938f6214fc0360c477992a (patch)
tree00e8ee0c86f194913c08f2bb0876a1ae08b00537 /src/newgrf_industries.h
parent3ab422b05715591be52334ce8cd522e506ddfdee (diff)
downloadopenttd-9373ee71d999a08c51938f6214fc0360c477992a.tar.xz
(svn r20996) -Change: [NewGRF] the X and Y offsets in the parameter for industry vars 60,61,62,63 are unsigned instead of signed
Diffstat (limited to 'src/newgrf_industries.h')
-rw-r--r--src/newgrf_industries.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/newgrf_industries.h b/src/newgrf_industries.h
index c05cd1246..af12a390e 100644
--- a/src/newgrf_industries.h
+++ b/src/newgrf_industries.h
@@ -46,6 +46,6 @@ bool IndustryTemporarilyRefusesCargo(Industry *ind, CargoID cargo_type);
IndustryType MapNewGRFIndustryType(IndustryType grf_type, uint32 grf_id);
/* in newgrf_industrytiles.cpp*/
-uint32 GetNearbyIndustryTileInformation(byte parameter, TileIndex tile, IndustryID index);
+uint32 GetNearbyIndustryTileInformation(byte parameter, TileIndex tile, IndustryID index, bool signed_offsets = true);
#endif /* NEWGRF_INDUSTRIES_H */