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
commitf9ea48bf3d0fe0c4a00313c45c31c73be614e210 (patch)
tree0d7242b1c537ae7e104d4a21a28cdbf998409ea0 /currency.c
parent79971ac119941a0a31b23f211bce5c8ee64ad568 (diff)
downloadopenttd-f9ea48bf3d0fe0c4a00313c45c31c73be614e210.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 */