summaryrefslogtreecommitdiff
path: root/src/openttd.h
diff options
context:
space:
mode:
authorpeter1138 <peter1138@openttd.org>2007-05-07 11:24:23 +0000
committerpeter1138 <peter1138@openttd.org>2007-05-07 11:24:23 +0000
commit0de85b7eb0375f3b857c10fc172f3894a906d758 (patch)
tree45872079a8d4c2bb43978e42bafd845484977201 /src/openttd.h
parent76ee6d1c8295c55ad7af89e43cbf5012847aba0f (diff)
downloadopenttd-0de85b7eb0375f3b857c10fc172f3894a906d758.tar.xz
(svn r9805) -Codechange: Use HASBIT() et al for display options bits.
Diffstat (limited to 'src/openttd.h')
-rw-r--r--src/openttd.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/openttd.h b/src/openttd.h
index 34c0af9d0..f4511ea92 100644
--- a/src/openttd.h
+++ b/src/openttd.h
@@ -171,12 +171,12 @@ struct TileInfo {
/* Display Options */
enum {
- DO_SHOW_TOWN_NAMES = 1 << 0,
- DO_SHOW_STATION_NAMES = 1 << 1,
- DO_SHOW_SIGNS = 1 << 2,
- DO_FULL_ANIMATION = 1 << 3,
- DO_FULL_DETAIL = 1 << 5,
- DO_WAYPOINTS = 1 << 6,
+ DO_SHOW_TOWN_NAMES = 0,
+ DO_SHOW_STATION_NAMES = 1,
+ DO_SHOW_SIGNS = 2,
+ DO_FULL_ANIMATION = 3,
+ DO_FULL_DETAIL = 5,
+ DO_WAYPOINTS = 6,
};
enum {