| 260 | } |
| 261 | |
| 262 | void INISettingsInterface::SetStringValue(const char* section, const char* key, const char* value) |
| 263 | { |
| 264 | m_dirty = true; |
| 265 | m_ini.SetValue(section, key, value, nullptr, true); |
| 266 | } |
| 267 | |
| 268 | bool INISettingsInterface::ContainsValue(const char* section, const char* key) const |
| 269 | { |
no test coverage detected