diff options
author | Darkvater <darkvater@openttd.org> | 2006-03-13 23:10:02 +0000 |
---|---|---|
committer | Darkvater <darkvater@openttd.org> | 2006-03-13 23:10:02 +0000 |
commit | 9cbce0a46e7a9d4a9c80c4d9e2d5453d683ba3aa (patch) | |
tree | a55c4647050232599cd21ab6d2e3b871c3d031e2 | |
parent | 5d939d9c107e007841450ea6ecbc2d963e9e8662 (diff) | |
download | openttd-9cbce0a46e7a9d4a9c80c4d9e2d5453d683ba3aa.tar.xz |
(svn r3852) - Revert r3733 which fixed the default value loading for char, but broke loading a set value. Added a better fix which needs a char value to be a string (eg enclosed in double-quotes)
-rw-r--r-- | settings.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/settings.c b/settings.c index 7a11a9515..0a91f5708 100644 --- a/settings.c +++ b/settings.c @@ -643,7 +643,7 @@ static void ini_load_settings(IniFile *ini, const SettingDesc *sd, const char *g case SLE_VAR_STRQ: if (p != NULL) ttd_strlcpy((char*)ptr, p, sld->length); break; - case SLE_VAR_CHAR: *(char*)ptr = (char)(unsigned long)p; break; + case SLE_VAR_CHAR: *(char*)ptr = *(char*)p; break; default: NOT_REACHED(); break; } break; @@ -1300,7 +1300,7 @@ const SettingDesc _patch_settings[] = { static const SettingDesc _currency_settings[] = { SDT_VAR(CurrencySpec, rate, SLE_UINT16, S, 0, 1, 0, 100, STR_NULL, NULL), - SDT_CHR(CurrencySpec, separator, S, 0, '.', STR_NULL, NULL), + SDT_CHR(CurrencySpec, separator, S, 0, ".", STR_NULL, NULL), SDT_VAR(CurrencySpec, to_euro, SLE_UINT16, S, 0, 0, 0,1000, STR_NULL, NULL), SDT_STR(CurrencySpec, prefix, SLE_STRQ, S, 0, NULL, STR_NULL, NULL), SDT_STR(CurrencySpec, suffix, SLE_STRQ, S, 0, " credits", STR_NULL, NULL), |