diff options
author | dominik <dominik@openttd.org> | 2004-12-23 20:42:24 +0000 |
---|---|---|
committer | dominik <dominik@openttd.org> | 2004-12-23 20:42:24 +0000 |
commit | ff6404c14b388abe1d280a711150f54b0c3a2cb2 (patch) | |
tree | d00c835f88dd2e5f78f47228d4efb352c4d2b720 | |
parent | 4a5e11cea99146583189ef8df8452b0adc64cbc6 (diff) | |
download | openttd-ff6404c14b388abe1d280a711150f54b0c3a2cb2.tar.xz |
(svn r1264) Fix: Default currency is GBP again and the currency identifier is displayed correctly in the config file
-rw-r--r-- | settings.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/settings.c b/settings.c index 2f14fe6dc..4c6fcaef9 100644 --- a/settings.c +++ b/settings.c @@ -783,7 +783,7 @@ static const SettingDesc debug_settings[] = { static const SettingDesc gameopt_settings[] = { {"diff_level", SDT_UINT8, (void*)9, &_new_opt.diff_level, NULL}, {"diff_custom", SDT_INTLIST | SDT_UINT32 | (sizeof(GameDifficulty)/4) << 16, NULL, &_new_opt.diff, NULL}, - {"currency", SDT_UINT8 | SDT_ONEOFMANY, (void*)21, &_new_opt.currency, "GBP|USD|FF|DM|YEN|PT|FT|ZL|ATS|BEF|DKK|FIM|GRD|CHF|NLG|ITL|SEK|RUR|CZK|ISK|NOK|EUR|ROL" }, + {"currency", SDT_UINT8 | SDT_ONEOFMANY, (void*)0, &_new_opt.currency, "GBP|USD|EUR|YEN|ATS|BEF|CHF|CZK|DEM|DKK|ESP|FIM|FRF|GRD|HUF|ISK|ITL|NLG|NOK|PLN|ROL|RUR|SEK|custom" }, {"distances", SDT_UINT8 | SDT_ONEOFMANY, (void*)1, &_new_opt.kilometers, "imperial|metric" }, {"town_names", SDT_UINT8 | SDT_ONEOFMANY, (void*)0, &_new_opt.town_name, "english|french|german|american|latin|silly|swedish|dutch|finnish|polish|slovakish|hungarian|romanian|czech" }, {"landscape", SDT_UINT8 | SDT_ONEOFMANY, (void*)0, &_new_opt.landscape, "normal|hilly|desert|candy" }, |