summaryrefslogtreecommitdiff
path: root/src/currency.cpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2009-04-12 17:27:44 +0000
committerrubidium <rubidium@openttd.org>2009-04-12 17:27:44 +0000
commit13d6412c22a27f35d67f754786769ac6900757d7 (patch)
treeef0e1d659c853ad1f45ce125b01d04a31776d844 /src/currency.cpp
parentd0f91fbea277198b79183a88a2e80473aa8de678 (diff)
downloadopenttd-13d6412c22a27f35d67f754786769ac6900757d7.tar.xz
(svn r16041) -Fix [FS#774]: the currency abbreviation for the Romanian Leu is now RON.
Diffstat (limited to 'src/currency.cpp')
-rw-r--r--src/currency.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/currency.cpp b/src/currency.cpp
index ee83de142..25f261472 100644
--- a/src/currency.cpp
+++ b/src/currency.cpp
@@ -35,7 +35,7 @@ static const CurrencySpec origin_currency_specs[NUM_CURRENCY] = {
{ 3, ',', 2002, "NLG ", "", 0, STR_CURR_NLG }, ///< dutch gulden
{ 12, '.', CF_NOEURO, "", " Kr", 1, STR_CURR_NOK }, ///< norwegian krone
{ 6, ' ', CF_NOEURO, "", " zl", 1, STR_CURR_PLN }, ///< polish zloty
- { 5, '.', CF_NOEURO, "", " Lei", 1, STR_CURR_ROL }, ///< romanian Lei
+ { 5, '.', CF_NOEURO, "", " Lei", 1, STR_CURR_RON }, ///< romanian Lei
{ 50, ' ', CF_NOEURO, "", " p", 1, STR_CURR_RUR }, ///< russian rouble
{ 352, '.', 2007, "", " SIT", 1, STR_CURR_SIT }, ///< slovenian tolar
{ 13, '.', CF_NOEURO, "", " Kr", 1, STR_CURR_SEK }, ///< swedish krona
@@ -76,7 +76,7 @@ enum {
CURR_NLG,
CURR_NOK,
CURR_PLN,
- CURR_ROL,
+ CURR_RON,
CURR_RUR,
CURR_SIT,
CURR_SEK,