| 248 | } |
| 249 | |
| 250 | void INISettingsInterface::SetDoubleValue(const char* section, const char* key, double value) |
| 251 | { |
| 252 | m_dirty = true; |
| 253 | m_ini.SetValue(section, key, StringUtil::ToChars(value).c_str(), nullptr, true); |
| 254 | } |
| 255 | |
| 256 | void INISettingsInterface::SetBoolValue(const char* section, const char* key, bool value) |
| 257 | { |