summaryrefslogtreecommitdiff
path: root/src/settings_gui.cpp
diff options
context:
space:
mode:
authorplanetmaker <planetmaker@openttd.org>2013-03-09 16:24:43 +0000
committerplanetmaker <planetmaker@openttd.org>2013-03-09 16:24:43 +0000
commitfae3cbae9fffc2fa3315d4e77f31bdd7d5a34a2c (patch)
tree3e552dbe9119aea670c6b85757d03c1adcb15588 /src/settings_gui.cpp
parentbd301e84757755f08657aaf98059c206f2480a3a (diff)
downloadopenttd-fae3cbae9fffc2fa3315d4e77f31bdd7d5a34a2c.tar.xz
(svn r25075) -Codechange: Allow for more than 32 currencies
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 50b0b880c..3a20f455f 100644
--- a/src/settings_gui.cpp
+++ b/src/settings_gui.cpp
@@ -189,7 +189,7 @@ struct GameOptionsWindow : Window {
list = new DropDownList();
*selected_index = this->opt->locale.currency;
StringID *items = BuildCurrencyDropdown();
- uint disabled = _game_mode == GM_MENU ? 0 : ~GetMaskOfAllowedCurrencies();
+ uint64 disabled = _game_mode == GM_MENU ? 0LL : ~GetMaskOfAllowedCurrencies();
/* Add non-custom currencies; sorted naturally */
for (uint i = 0; i < CURRENCY_END; items++, i++) {