From 23fab42b2fb37c540ae2cf90eaa7553895d0407c Mon Sep 17 00:00:00 2001 From: belugas Date: Fri, 4 Jan 2008 03:31:08 +0000 Subject: [PATCH] (svn r11754) -Fix(r11753): One too much command separator (;). Thanks glx for spotting --- src/settings_gui.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/settings_gui.cpp b/src/settings_gui.cpp index e52062d61f..d75ebb12b2 100644 --- a/src/settings_gui.cpp +++ b/src/settings_gui.cpp @@ -183,7 +183,7 @@ static void GameOptionsWndProc(Window *w, WindowEvent *e) case WE_CLICK: switch (e->we.click.widget) { case GAMEOPT_CURRENCY_TXT: case GAMEOPT_CURRENCY_BTN: /* Setup currencies dropdown */ - ShowDropDownMenu(w, BuildCurrencyDropdown(), _opt_ptr->currency, GAMEOPT_CURRENCY_BTN, _game_mode == GM_MENU ? 0 : ~GetMaskOfAllowedCurrencies(), 0);; + ShowDropDownMenu(w, BuildCurrencyDropdown(), _opt_ptr->currency, GAMEOPT_CURRENCY_BTN, _game_mode == GM_MENU ? 0 : ~GetMaskOfAllowedCurrencies(), 0); break; case GAMEOPT_DISTANCE_TXT: case GAMEOPT_DISTANCE_BTN: /* Setup distance unit dropdown */