From 83b2abb6d6da9ac7ef53d3d60617e95bf87c47e3 Mon Sep 17 00:00:00 2001 From: darkvater Date: Mon, 10 Jan 2005 14:56:26 +0000 Subject: (svn r1466) -Fix: oops, depot windows can of course also scroll horizontally. Thanks si-m1. --- aircraft_gui.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'aircraft_gui.c') diff --git a/aircraft_gui.c b/aircraft_gui.c index c2242a570..48a5f9c80 100644 --- a/aircraft_gui.c +++ b/aircraft_gui.c @@ -742,7 +742,7 @@ static int GetVehicleFromAircraftDepotWndPt(Window *w, int x, int y, Vehicle **v xt = x / 74; xm = x % 74; - if (xt >= 4) + if (xt >= w->hscroll.cap) return 1; row = (y - 14) / 24; @@ -750,7 +750,7 @@ static int GetVehicleFromAircraftDepotWndPt(Window *w, int x, int y, Vehicle **v if (row >= w->vscroll.cap) return 1; - pos = (row + w->vscroll.pos) * 4 + xt; + pos = (row + w->vscroll.pos) * w->hscroll.cap + xt; tile = w->window_number; FOR_ALL_VEHICLES(v) { -- cgit v1.2.3-54-g00ecf