diff options
author | tron <tron@openttd.org> | 2005-10-06 09:35:08 +0000 |
---|---|---|
committer | tron <tron@openttd.org> | 2005-10-06 09:35:08 +0000 |
commit | cbb12fa4423d9e9650c4ce8e8574ca5c4425d42b (patch) | |
tree | 51da41f05717afcb5ff8f303e789d8dbeb4c354c | |
parent | 21013669c1bb1b0f6718398ee50ef71fa01485cf (diff) | |
download | openttd-cbb12fa4423d9e9650c4ce8e8574ca5c4425d42b.tar.xz |
(svn r3021) -Fix: "The finnish markka was never abbreviated with capital letters." (ln-)
-rw-r--r-- | currency.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/currency.c b/currency.c index fef688596..bd529f18b 100644 --- a/currency.c +++ b/currency.c @@ -23,7 +23,7 @@ CurrencySpec _currency_specs[] = { { 4, '.', 2002, "DM ", "" }, // deutsche mark { 10, '.', CF_NOEURO, "", " kr" }, // danish krone { 200, '.', 2002, "Pts ", "" }, // spanish pesetas - { 8, ',', 2002, "", " MK" }, // finnish markka + { 8, ',', 2002, "", " mk" }, // finnish markka { 10, '.', 2002, "FF ", "" }, // french francs { 480, ',', 2002, "", "Dr." }, // greek drachma { 376, ',', 2002, "", " Ft" }, // hungarian forint |