Merge pull request #9454 from JosJuice/android-ingame-settings-save

Android: Fix in-game settings changes not getting saved
This commit is contained in:
Léo Lam
2021-01-27 18:17:27 +01:00
committed by GitHub
2 changed files with 8 additions and 1 deletions

View File

@ -138,6 +138,8 @@ public:
m_map.insert_or_assign(location, std::move(new_value));
}
void MarkAsDirty() { m_is_dirty = true; }
Section GetSection(System system, const std::string& section);
ConstSection GetSection(System system, const std::string& section) const;