(svn r16949) -Codechange: unify the way the DisplayOption enums are written

This commit is contained in:
rubidium
2009-07-25 10:54:42 +00:00
parent 4017439c37
commit 65d4d8b46c
4 changed files with 22 additions and 22 deletions

View File

@@ -29,12 +29,12 @@ enum SwitchMode {
/* Display Options */
enum {
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,
DO_SHOW_TOWN_NAMES = 0,
DO_SHOW_STATION_NAMES = 1,
DO_SHOW_SIGNS = 2,
DO_FULL_ANIMATION = 3,
DO_FULL_DETAIL = 5,
DO_SHOW_WAYPOINT_NAMES = 6,
};
extern GameMode _game_mode;