| 254 | } |
| 255 | |
| 256 | void INISettingsInterface::SetBoolValue(const char* section, const char* key, bool value) |
| 257 | { |
| 258 | m_dirty = true; |
| 259 | m_ini.SetBoolValue(section, key, value, nullptr, true); |
| 260 | } |
| 261 | |
| 262 | void INISettingsInterface::SetStringValue(const char* section, const char* key, const char* value) |
| 263 | { |
no outgoing calls
no test coverage detected