From 5fdfb397d204f257080e78485eaf41833b90b61a Mon Sep 17 00:00:00 2001 From: zaxcav Date: Tue, 4 Oct 2016 15:50:23 +0200 Subject: [PATCH] Fix typo --- src/ride/ride.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ride/ride.c b/src/ride/ride.c index d32c7216f1..92e10545a7 100644 --- a/src/ride/ride.c +++ b/src/ride/ride.c @@ -8743,8 +8743,8 @@ bool ride_has_adjacent_station(rct_ride *ride) } /* Check the first side of the station */ int direction = (stationElement->type + 1) & 3; - uint adjStationX = stationX + TileDirectionDelta[direction].x; - uint adjStationY = stationY + TileDirectionDelta[direction].y; + int adjStationX = stationX + TileDirectionDelta[direction].x; + int adjStationY = stationY + TileDirectionDelta[direction].y; if (check_adjacent_station(adjStationX, adjStationY, stationZ)) { found = true; break;