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
commit52fa30022a36faa5c46ad63c17df59d8f50215c6 (patch)
tree6d8b9a4a52c1ffb220bfe92e45f255b8fb69983d /vehicle_gui.h
parentacdfefaad1a841545e54a7ed69f9065aa010db69 (diff)
downloadopenttd-52fa30022a36faa5c46ad63c17df59d8f50215c6.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)