diff options
author | belugas <belugas@openttd.org> | 2007-06-17 01:01:15 +0000 |
---|---|---|
committer | belugas <belugas@openttd.org> | 2007-06-17 01:01:15 +0000 |
commit | 0b2b435c44ebf274f3aa368e9f08c2e5d7c9ac65 (patch) | |
tree | e7f483d077b03c5baf2c52e475207318bf8af29d | |
parent | 03c1ecb17a6027b4df7a2577ae975a3f1aaebb7a (diff) | |
download | openttd-0b2b435c44ebf274f3aa368e9f08c2e5d7c9ac65.tar.xz |
(svn r10172) -Fix(r10127): Wrong evaluation order on variable 0x41 for industry tile.
The industry's xy (northernmost tile) should be checked against the relative tile, not the other way around.
-rw-r--r-- | src/newgrf_industrytiles.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/newgrf_industrytiles.cpp b/src/newgrf_industrytiles.cpp index 3ec3788bf..d7cbe350d 100644 --- a/src/newgrf_industrytiles.cpp +++ b/src/newgrf_industrytiles.cpp @@ -51,8 +51,8 @@ static uint32 GetNearbyIndustryTileInformation(byte parameter, TileIndex tile, I */ static uint32 GetRelativePosition(TileIndex tile, TileIndex ind_tile) { - byte x = TileX(ind_tile) - TileX(tile); - byte y = TileY(ind_tile) - TileY(tile); + byte x = TileX(tile) - TileX(ind_tile); + byte y = TileY(tile) - TileY(ind_tile); return ((y & 0xF) << 20) | ((x & 0xF) << 16) | (y << 8) | x; } |