summaryrefslogtreecommitdiff
path: root/openttd.h
diff options
context:
space:
mode:
authorhackykid <hackykid@openttd.org>2005-06-14 10:59:05 +0000
committerhackykid <hackykid@openttd.org>2005-06-14 10:59:05 +0000
commit6533db736c7a898211e9955a214a651b43ef712c (patch)
tree4f8e6c8d621ea904fb32189b1ad812d960808f4d /openttd.h
parent89bd0b50b6cdac2436f47e7c3854e9291d5967d4 (diff)
downloadopenttd-6533db736c7a898211e9955a214a651b43ef712c.tar.xz
(svn r2438) - Feature: New display option, 'transparent station signs', makes station signs transparent instead of using a solid bar to draw text on (peter1138)
Diffstat (limited to 'openttd.h')
-rw-r--r--openttd.h15
1 files changed, 8 insertions, 7 deletions
diff --git a/openttd.h b/openttd.h
index c77225b37..6811ebf4e 100644
--- a/openttd.h
+++ b/openttd.h
@@ -125,13 +125,14 @@ enum {
/* Display Options */
enum {
- DO_SHOW_TOWN_NAMES = 1,
- DO_SHOW_STATION_NAMES = 2,
- DO_SHOW_SIGNS = 4,
- DO_FULL_ANIMATION = 8,
- DO_TRANS_BUILDINGS = 0x10,
- DO_FULL_DETAIL = 0x20,
- DO_WAYPOINTS = 0x40,
+ DO_SHOW_TOWN_NAMES = 1 << 0,
+ DO_SHOW_STATION_NAMES = 1 << 1,
+ DO_SHOW_SIGNS = 1 << 2,
+ DO_FULL_ANIMATION = 1 << 3,
+ DO_TRANS_BUILDINGS = 1 << 4,
+ DO_FULL_DETAIL = 1 << 5,
+ DO_WAYPOINTS = 1 << 6,
+ DO_TRANS_SIGNS = 1 << 7,
};
/* Landscape types */