mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-27 08:10:13 -06:00
Config: Keep track of deleted keys
This allows deleted keys to be deleted from INIs properly.
This commit is contained in:
@ -120,6 +120,8 @@ bool Section::Delete(const std::string& key)
|
||||
return false;
|
||||
|
||||
m_values.erase(it);
|
||||
|
||||
m_deleted_keys.push_back(key);
|
||||
m_dirty = true;
|
||||
return true;
|
||||
}
|
||||
|
Reference in New Issue
Block a user