summaryrefslogtreecommitdiff
path: root/src/settings_gui.cpp
diff options
context:
space:
mode:
authorbelugas <belugas@openttd.org>2008-01-04 03:31:08 +0000
committerbelugas <belugas@openttd.org>2008-01-04 03:31:08 +0000
commit23fab42b2fb37c540ae2cf90eaa7553895d0407c (patch)
tree53c1ab5eadda8ffb4e944e5275462af7f023e357 /src/settings_gui.cpp
parentc59ea520a72d4ee7929ffbd1b963970f047dc33c (diff)
downloadopenttd-23fab42b2fb37c540ae2cf90eaa7553895d0407c.tar.xz
(svn r11754) -Fix(r11753): One too much command separator (;). Thanks glx for spotting
Diffstat (limited to 'src/settings_gui.cpp')
-rw-r--r--src/settings_gui.cpp2
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 */