diff options
Diffstat (limited to 'vehicle_gui.h')
-rw-r--r-- | vehicle_gui.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/vehicle_gui.h b/vehicle_gui.h index d9aa78c1d..29bbf32c6 100644 --- a/vehicle_gui.h +++ b/vehicle_gui.h @@ -47,6 +47,11 @@ enum { VLW_STATION_LIST = 2 << 8, }; +static inline bool ValidVLWFlags(uint16 flags) +{ + return (flags == VLW_STANDARD || flags == VLW_SHARED_ORDERS || flags == VLW_STATION_LIST); +} + void PlayerVehWndProc(Window *w, WindowEvent *e); void ShowReplaceVehicleWindow(byte vehicletype); |