mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-02-02 12:24:15 +00:00
(svn r9773) -Fix r9772: MSVC warning
This commit is contained in:
parent
9194d5ab9e
commit
a7c39f7325
@ -756,7 +756,7 @@ bool CanFillVehicle(Vehicle *front_v)
|
||||
IsTileType(TILE_ADDXY(tile, -2, 0), MP_STATION)
|
||||
)));
|
||||
|
||||
bool full_load = front_v->current_order.flags & OF_FULL_LOAD;
|
||||
bool full_load = HASBIT(front_v->current_order.flags, OFB_FULL_LOAD);
|
||||
|
||||
/* If patch is active, use alternative CanFillVehicle-function */
|
||||
if (_patches.full_load_any && full_load) return CanFillVehicle_FullLoadAny(front_v);
|
||||
|
Loading…
Reference in New Issue
Block a user