diff -r 3a3289a049f9 -r 63e18de69e50 src/viewport.cpp --- a/src/viewport.cpp Mon Nov 19 20:40:14 2007 +0000 +++ b/src/viewport.cpp Mon Nov 19 21:02:30 2007 +0000 @@ -1062,7 +1062,7 @@ Town *t; int left, top, right, bottom; - if (!HASBIT(_display_opt, DO_SHOW_TOWN_NAMES) || _game_mode == GM_MENU) + if (!HasBit(_display_opt, DO_SHOW_TOWN_NAMES) || _game_mode == GM_MENU) return; left = dpi->left; @@ -1138,7 +1138,7 @@ int left, top, right, bottom; const Station *st; - if (!HASBIT(_display_opt, DO_SHOW_STATION_NAMES) || _game_mode == GM_MENU) + if (!HasBit(_display_opt, DO_SHOW_STATION_NAMES) || _game_mode == GM_MENU) return; left = dpi->left; @@ -1208,7 +1208,7 @@ const Sign *si; int left, top, right, bottom; - if (!HASBIT(_display_opt, DO_SHOW_SIGNS)) + if (!HasBit(_display_opt, DO_SHOW_SIGNS)) return; left = dpi->left; @@ -1278,7 +1278,7 @@ const Waypoint *wp; int left, top, right, bottom; - if (!HASBIT(_display_opt, DO_WAYPOINTS)) + if (!HasBit(_display_opt, DO_WAYPOINTS)) return; left = dpi->left; @@ -1818,7 +1818,7 @@ { const Town *t; - if (!HASBIT(_display_opt, DO_SHOW_TOWN_NAMES)) return false; + if (!HasBit(_display_opt, DO_SHOW_TOWN_NAMES)) return false; switch (vp->zoom) { case ZOOM_LVL_NORMAL: @@ -1876,7 +1876,7 @@ { const Station *st; - if (!HASBIT(_display_opt, DO_SHOW_STATION_NAMES)) return false; + if (!HasBit(_display_opt, DO_SHOW_STATION_NAMES)) return false; switch (vp->zoom) { case ZOOM_LVL_NORMAL: @@ -1934,7 +1934,7 @@ { const Sign *si; - if (!HASBIT(_display_opt, DO_SHOW_SIGNS) || _current_player == PLAYER_SPECTATOR) return false; + if (!HasBit(_display_opt, DO_SHOW_SIGNS) || _current_player == PLAYER_SPECTATOR) return false; switch (vp->zoom) { case ZOOM_LVL_NORMAL: @@ -1992,7 +1992,7 @@ { const Waypoint *wp; - if (!HASBIT(_display_opt, DO_WAYPOINTS)) return false; + if (!HasBit(_display_opt, DO_WAYPOINTS)) return false; switch (vp->zoom) { case ZOOM_LVL_NORMAL: