summaryrefslogtreecommitdiff
path: root/src/currency.h
diff options
context:
space:
mode:
authorbelugas <belugas@openttd.org>2007-03-25 23:42:55 +0000
committerbelugas <belugas@openttd.org>2007-03-25 23:42:55 +0000
commit683aae8abf2486a124938691c32172f043d8a45f (patch)
tree17be004bb6cdaa3f396df286149703a5d9bde6d2 /src/currency.h
parent45e788d524b4ce088b1f3e4ba27ed3a5340fdcda (diff)
downloadopenttd-683aae8abf2486a124938691c32172f043d8a45f.tar.xz
(svn r9467) -Fix(FS#703,6108): When resetting the array of currencies, the custom currency was reset too, thus loosing the setting a user could have used for it.(glx)
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 a72eab7d0..86b46e713 100644
--- a/src/currency.h
+++ b/src/currency.h
@@ -40,7 +40,7 @@ extern CurrencySpec _currency_specs[NUM_CURRENCY];
uint GetMaskOfAllowedCurrencies();
void CheckSwitchToEuro();
-void ResetCurrencies();
+void ResetCurrencies(bool preserve_custom = true);
StringID* BuildCurrencyDropdown();
byte GetNewgrfCurrencyIdConverted(byte grfcurr_id);