mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-12-12 03:02:30 +00:00
fix(console): fix improper printing in 'cvarlist' command
This commit is contained in:
parent
93be23dacc
commit
f6fba9b74c
2 changed files with 3 additions and 3 deletions
|
|
@ -388,14 +388,14 @@ int32_t CvarListCommandHandler(const char* command, const char* arguments) {
|
||||||
|
|
||||||
if (cvar->m_defaultValue.GetString()) {
|
if (cvar->m_defaultValue.GetString()) {
|
||||||
if (SStrCmp(cvar->m_stringValue.GetString(), cvar->m_defaultValue.GetString(), STORM_MAX_STR)) {
|
if (SStrCmp(cvar->m_stringValue.GetString(), cvar->m_defaultValue.GetString(), STORM_MAX_STR)) {
|
||||||
SStrPrintf(text2, sizeof(text2), " (default \"%s\")", cvar->m_defaultValue);
|
SStrPrintf(text2, sizeof(text2), " (default \"%s\")", cvar->m_defaultValue.GetString());
|
||||||
SStrPack(text, text2, sizeof(text));
|
SStrPack(text, text2, sizeof(text));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (cvar->m_resetValue.GetString()) {
|
if (cvar->m_resetValue.GetString()) {
|
||||||
if (SStrCmp(cvar->m_stringValue.GetString(), cvar->m_resetValue.GetString(), STORM_MAX_STR)) {
|
if (SStrCmp(cvar->m_stringValue.GetString(), cvar->m_resetValue.GetString(), STORM_MAX_STR)) {
|
||||||
SStrPrintf(text2, sizeof(text2), " (reset \"%s\")", cvar->m_resetValue);
|
SStrPrintf(text2, sizeof(text2), " (reset \"%s\")", cvar->m_resetValue.GetString());
|
||||||
SStrPack(text, text2, sizeof(text));
|
SStrPack(text, text2, sizeof(text));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue