| 242 | } |
| 243 | |
| 244 | void INISettingsInterface::SetFloatValue(const char* section, const char* key, float value) |
| 245 | { |
| 246 | m_dirty = true; |
| 247 | m_ini.SetValue(section, key, StringUtil::ToChars(value).c_str(), nullptr, true); |
| 248 | } |
| 249 | |
| 250 | void INISettingsInterface::SetDoubleValue(const char* section, const char* key, double value) |
| 251 | { |
no test coverage detected