diff options
author | belugas <belugas@openttd.org> | 2008-01-04 03:31:08 +0000 |
---|---|---|
committer | belugas <belugas@openttd.org> | 2008-01-04 03:31:08 +0000 |
commit | bd9741e08673f19cbab33e49ffba5aee523e0c56 (patch) | |
tree | 53c1ab5eadda8ffb4e944e5275462af7f023e357 | |
parent | bed549f4befcfb7f06dc352954ba31848ac4d98e (diff) | |
download | openttd-bd9741e08673f19cbab33e49ffba5aee523e0c56.tar.xz |
(svn r11754) -Fix(r11753): One too much command separator (;). Thanks glx for spotting
-rw-r--r-- | src/settings_gui.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/settings_gui.cpp b/src/settings_gui.cpp index e52062d61..d75ebb12b 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 */ |