# HG changeset patch # User belugas # Date 1213637295 0 # Node ID e8358ed0f98e17bc2a87a87584cc19c5c5e1bc52 # Parent 20a58e431c292d2c433dce3c2519ac798e040f03 (svn r13536) -Codechange: Bit shifting is not really required when you know exactly the value to use. Even more when it's a parameter. diff -r 20a58e431c29 -r e8358ed0f98e src/toolbar_gui.cpp --- a/src/toolbar_gui.cpp Mon Jun 16 17:10:55 2008 +0000 +++ b/src/toolbar_gui.cpp Mon Jun 16 17:28:15 2008 +0000 @@ -345,7 +345,7 @@ static void ToolbarIndustryClick(Window *w) { /* Disable build-industry menu if we are a spectator */ - PopupMainToolbMenu(w, 12, STR_INDUSTRY_DIR, 2, (_current_player == PLAYER_SPECTATOR) ? (1 << 1) : 0); + PopupMainToolbMenu(w, 12, STR_INDUSTRY_DIR, 2, (_current_player == PLAYER_SPECTATOR) ? 2 : 0); } static void MenuClickIndustry(int index)