summaryrefslogtreecommitdiff
path: root/roadveh_gui.c
diff options
context:
space:
mode:
Diffstat (limited to 'roadveh_gui.c')
-rw-r--r--roadveh_gui.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/roadveh_gui.c b/roadveh_gui.c
index 5fad9f8a0..d2ae1ceea 100644
--- a/roadveh_gui.c
+++ b/roadveh_gui.c
@@ -551,14 +551,14 @@ static int GetVehicleFromRoadDepotWndPt(Window *w, int x, int y, Vehicle **veh)
xt = x / 56;
xm = x % 56;
- if (xt >= 5)
+ if (xt >= w->hscroll.cap)
return 1;
row = (y - 14) / 14;
if (row >= w->vscroll.cap)
return 1;
- pos = (row + w->vscroll.pos) * 5 + xt;
+ pos = (row + w->vscroll.pos) * w->hscroll.cap + xt;
tile = w->window_number;
FOR_ALL_VEHICLES(v) {