| 236 | } |
| 237 | |
| 238 | void INISettingsInterface::SetUIntValue(const char* section, const char* key, uint value) |
| 239 | { |
| 240 | m_dirty = true; |
| 241 | m_ini.SetValue(section, key, StringUtil::ToChars(value).c_str(), nullptr, true); |
| 242 | } |
| 243 | |
| 244 | void INISettingsInterface::SetFloatValue(const char* section, const char* key, float value) |
| 245 | { |
no test coverage detected