(svn r12892) -Fix: too many items in the vehicle toolbars were greyed out.

This commit is contained in:
rubidium
2008-04-25 06:15:58 +00:00
parent 6b961f7ba6
commit 6ed5c01143

View File

@@ -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);
}