summaryrefslogtreecommitdiff
path: root/vehicle_gui.h
diff options
context:
space:
mode:
authorDarkvater <darkvater@openttd.org>2006-09-04 15:16:58 +0000
committerDarkvater <darkvater@openttd.org>2006-09-04 15:16:58 +0000
commitb7f36808acfd52ff64bfb454260bb4071acbd6e7 (patch)
tree6d8b9a4a52c1ffb220bfe92e45f255b8fb69983d /vehicle_gui.h
parenta40d6951d1aca88db62c05e45c15967ab9523a8f (diff)
downloadopenttd-b7f36808acfd52ff64bfb454260bb4071acbd6e7.tar.xz
(svn r6378) -Codechange: Rename VLW_FLAGS to VLW_MASK as it is a mask
Diffstat (limited to 'vehicle_gui.h')
-rw-r--r--vehicle_gui.h4
1 files changed, 2 insertions, 2 deletions
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)