(svn r2438) - Feature: New display option, 'transparent station signs', makes station signs transparent instead of using a solid bar to draw text on (peter1138)

This commit is contained in:
hackykid
2005-06-14 10:59:05 +00:00
parent 89bd0b50b6
commit 6533db736c
4 changed files with 18 additions and 10 deletions

View File

@@ -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 */