mirror of
https://github.com/JGRennison/OpenTTD-patches.git
synced 2024-11-17 21:25:40 +00:00
(svn r19864) -Fix: don't print a pointer as string for listing (a) setting(s)
This commit is contained in:
parent
f994b11e8c
commit
f1c1812e47
@ -1828,7 +1828,7 @@ void IConsoleGetSetting(const char *name, bool force_newgame)
|
|||||||
ptr = GetVariableAddress((_game_mode == GM_MENU || force_newgame) ? &_settings_newgame : &_settings_game, &sd->save);
|
ptr = GetVariableAddress((_game_mode == GM_MENU || force_newgame) ? &_settings_newgame : &_settings_game, &sd->save);
|
||||||
|
|
||||||
if (sd->desc.cmd == SDT_STRING) {
|
if (sd->desc.cmd == SDT_STRING) {
|
||||||
IConsolePrintF(CC_WARNING, "Current value for '%s' is: '%s'", name, (const char *)ptr);
|
IConsolePrintF(CC_WARNING, "Current value for '%s' is: '%s'", name, (GetVarMemType(sd->save.conv) == SLE_VAR_STRQ) ? *(const char **)ptr : (const char *)ptr);
|
||||||
} else {
|
} else {
|
||||||
if (sd->desc.cmd == SDT_BOOLX) {
|
if (sd->desc.cmd == SDT_BOOLX) {
|
||||||
snprintf(value, sizeof(value), (*(bool*)ptr == 1) ? "on" : "off");
|
snprintf(value, sizeof(value), (*(bool*)ptr == 1) ? "on" : "off");
|
||||||
@ -1859,7 +1859,7 @@ void IConsoleListSettings(const char *prefilter)
|
|||||||
if (sd->desc.cmd == SDT_BOOLX) {
|
if (sd->desc.cmd == SDT_BOOLX) {
|
||||||
snprintf(value, lengthof(value), (*(bool*)ptr == 1) ? "on" : "off");
|
snprintf(value, lengthof(value), (*(bool*)ptr == 1) ? "on" : "off");
|
||||||
} else if (sd->desc.cmd == SDT_STRING) {
|
} else if (sd->desc.cmd == SDT_STRING) {
|
||||||
snprintf(value, sizeof(value), "%s", (const char *)ptr);
|
snprintf(value, sizeof(value), "%s", (GetVarMemType(sd->save.conv) == SLE_VAR_STRQ) ? *(const char **)ptr : (const char *)ptr);
|
||||||
} else {
|
} else {
|
||||||
snprintf(value, lengthof(value), "%d", (uint32)ReadValue(ptr, sd->save.conv));
|
snprintf(value, lengthof(value), "%d", (uint32)ReadValue(ptr, sd->save.conv));
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user