| 230 | } |
| 231 | |
| 232 | void INISettingsInterface::SetIntValue(const char* section, const char* key, int value) |
| 233 | { |
| 234 | m_dirty = true; |
| 235 | m_ini.SetValue(section, key, StringUtil::ToChars(value).c_str(), nullptr, true); |
| 236 | } |
| 237 | |
| 238 | void INISettingsInterface::SetUIntValue(const char* section, const char* key, uint value) |
| 239 | { |
no test coverage detected