| 256 | } |
| 257 | |
| 258 | void Host::SetBaseFloatSettingValue(const char* section, const char* key, float value) |
| 259 | { |
| 260 | std::unique_lock lock(s_settings_mutex); |
| 261 | s_layered_settings_interface.GetLayer(LayeredSettingsInterface::LAYER_BASE)->SetFloatValue(section, key, value); |
| 262 | } |
| 263 | |
| 264 | void Host::SetBaseStringSettingValue(const char* section, const char* key, const char* value) |
| 265 | { |
nothing calls this directly
no test coverage detected