| 186 | } |
| 187 | |
| 188 | void MemorySettingsInterface::SetKeyValueList(const char* section, const std::vector<std::pair<std::string, std::string>>& items) |
| 189 | { |
| 190 | auto sit = m_sections.find(section); |
| 191 | sit->second.clear(); |
| 192 | for (const auto& [key, value] : items) |
| 193 | sit->second.emplace(key, value); |
| 194 | } |
| 195 | |
| 196 | void MemorySettingsInterface::SetValue(const char* section, const char* key, std::string value) |
| 197 | { |