forked from mirror/OpenTTD
(svn r1466) -Fix: oops, depot windows can of course also scroll horizontally. Thanks si-m1.
This commit is contained in:
@@ -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) {
|
||||
|
@@ -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) {
|
||||
|
@@ -684,7 +684,7 @@ static int GetVehicleFromShipDepotWndPt(Window *w, int x, int y, Vehicle **veh)
|
||||
|
||||
xt = x / 90;
|
||||
xm = x % 90;
|
||||
if (xt >= 5)
|
||||
if (xt >= w->hscroll.cap)
|
||||
return 1;
|
||||
|
||||
row = (y - 14) / 24;
|
||||
@@ -692,7 +692,7 @@ static int GetVehicleFromShipDepotWndPt(Window *w, int x, int y, Vehicle **veh)
|
||||
if (row >= w->vscroll.cap)
|
||||
return 1;
|
||||
|
||||
pos = (row + w->vscroll.pos) * 3 + xt;
|
||||
pos = (row + w->vscroll.pos) * w->hscroll.cap + xt;
|
||||
|
||||
tile = w->window_number;
|
||||
FOR_ALL_VEHICLES(v) {
|
||||
|
Reference in New Issue
Block a user