diff options
| author | t895 <clombardo169@gmail.com> | 2024-02-11 07:25:57 -0500 | 
|---|---|---|
| committer | t895 <clombardo169@gmail.com> | 2024-02-11 07:35:54 -0500 | 
| commit | adebc96a9c449df092f6a3b8c09a169cf4b04ac4 (patch) | |
| tree | a0301223c7cea69bdd1571461fb750f044c7803b | |
| parent | 564a65a82e77de0b6355e74eb2e845d802e3d1cc (diff) | |
config: Always delete control settings in ClearControlPlayerValues
| -rw-r--r-- | src/frontend_common/config.cpp | 10 | 
1 files changed, 2 insertions, 8 deletions
| diff --git a/src/frontend_common/config.cpp b/src/frontend_common/config.cpp index d34624d28..af6b10db6 100644 --- a/src/frontend_common/config.cpp +++ b/src/frontend_common/config.cpp @@ -867,15 +867,9 @@ void Config::Reload() {  }  void Config::ClearControlPlayerValues() const { -    // If key is an empty string, all keys in the current group() are removed. +    // Removes the entire [Controls] section      const char* section = Settings::TranslateCategory(Settings::Category::Controls); -    CSimpleIniA::TNamesDepend keys; -    config->GetAllKeys(section, keys); -    for (const auto& key : keys) { -        if (std::string(config->GetValue(section, key.pItem)).empty()) { -            config->Delete(section, key.pItem); -        } -    } +    config->Delete(section, nullptr, true);  }  const std::string& Config::GetConfigFilePath() const { | 
