[Base/Core] Add support for transient cvars.
This commit is contained in:
@@ -61,6 +61,9 @@ void SaveConfig() {
|
||||
std::ostringstream output;
|
||||
std::string lastCategory;
|
||||
for (auto configVar : vars) {
|
||||
if (configVar->GetIsTransient()) {
|
||||
continue;
|
||||
}
|
||||
if (lastCategory != configVar->GetCategory()) {
|
||||
if (!lastCategory.empty()) {
|
||||
output << std::endl;
|
||||
|
||||
Reference in New Issue
Block a user