summaryrefslogtreecommitdiff
path: root/currency.c
diff options
context:
space:
mode:
authorbelugas <belugas@openttd.org>2006-09-15 02:52:17 +0000
committerbelugas <belugas@openttd.org>2006-09-15 02:52:17 +0000
commitd1508bbd6cbcf991fffe03d41918f177a6cec330 (patch)
tree0d7242b1c537ae7e104d4a21a28cdbf998409ea0 /currency.c
parent326e74055e62ee6cc26a7eb39fdb5c6beb49f85f (diff)
downloadopenttd-d1508bbd6cbcf991fffe03d41918f177a6cec330.tar.xz
(svn r6454) -Fix(r6108) : Allow custom currency to display both prefix and suffix
-Codechange : Divide rate of conversion from grf by 1000, to match OTTD internal system
Diffstat (limited to 'currency.c')
-rw-r--r--currency.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/currency.c b/currency.c
index e31972d81..7d2594647 100644
--- a/currency.c
+++ b/currency.c
@@ -38,7 +38,7 @@ const CurrencySpec origin_currency_specs[NUM_CURRENCY] = {
{ 350, '.', CF_NOEURO, "", " SIT", 1, STR_CURR_SIT }, // slovenian tolar
{ 13, '.', CF_NOEURO, "", " Kr", 1, STR_CURR_SEK }, // swedish krona
{ 2, '.', CF_NOEURO, "", " YTL", 1, STR_CURR_YTL }, // turkish lira
- { 1, ' ', CF_NOEURO, "", "", 0, STR_CURR_CUSTOM }, // custom currency
+ { 1, ' ', CF_NOEURO, "", "", 2, STR_CURR_CUSTOM }, // custom currency
};
/* Array of currencies used by the system */