From 52fa30022a36faa5c46ad63c17df59d8f50215c6 Mon Sep 17 00:00:00 2001 From: Darkvater Date: Mon, 4 Sep 2006 15:16:58 +0000 Subject: (svn r6378) -Codechange: Rename VLW_FLAGS to VLW_MASK as it is a mask --- vehicle_gui.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'vehicle_gui.h') diff --git a/vehicle_gui.h b/vehicle_gui.h index 040d7cc0f..108f8f88e 100644 --- a/vehicle_gui.h +++ b/vehicle_gui.h @@ -17,10 +17,10 @@ void ResortVehicleLists(void); /* Vehicle List Window type flags */ enum { - VLW_FLAGS = (1 << 8)|(1 << 9)|(1 << 10), - VLW_STANDARD = 0, + VLW_STANDARD = 0 << 8, VLW_SHARED_ORDERS = 1 << 8, VLW_STATION_LIST = 2 << 8, + VLW_MASK = 0x700, }; static inline bool ValidVLWFlags(uint16 flags) -- cgit v1.2.3-54-g00ecf