summaryrefslogtreecommitdiff
path: root/src/currency.h
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/currency.h
parentbd301e84757755f08657aaf98059c206f2480a3a (diff)
downloadopenttd-fae3cbae9fffc2fa3315d4e77f31bdd7d5a34a2c.tar.xz
(svn r25075) -Codechange: Allow for more than 32 currencies
Diffstat (limited to 'src/currency.h')
-rw-r--r--src/currency.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/currency.h b/src/currency.h
index c4476b767..aa29efdf7 100644
--- a/src/currency.h
+++ b/src/currency.h
@@ -85,7 +85,7 @@ extern CurrencySpec _currency_specs[CURRENCY_END];
#define _custom_currency (_currency_specs[CURRENCY_CUSTOM])
#define _currency ((const CurrencySpec*)&_currency_specs[GetGameSettings().locale.currency])
-uint GetMaskOfAllowedCurrencies();
+uint64 GetMaskOfAllowedCurrencies();
void CheckSwitchToEuro();
void ResetCurrencies(bool preserve_custom = true);
StringID *BuildCurrencyDropdown();