mirror of
https://github.com/JGRennison/OpenTTD-patches.git
synced 2024-10-31 15:20:10 +00:00
(svn r12892) -Fix: too many items in the vehicle toolbars were greyed out.
This commit is contained in:
parent
e7582da106
commit
f1679bcbb7
@ -314,10 +314,7 @@ static void ToolbarVehicleClick(Window *w, VehicleType veh)
|
||||
int dis = ~0;
|
||||
|
||||
FOR_ALL_VEHICLES(v) {
|
||||
if (v->type == veh && v->IsPrimaryVehicle()) {
|
||||
ClrBit(dis, v->owner);
|
||||
break;
|
||||
}
|
||||
if (v->type == veh && v->IsPrimaryVehicle()) ClrBit(dis, v->owner);
|
||||
}
|
||||
PopupMainPlayerToolbMenu(w, 13 + veh, dis);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user