| 250 | } |
| 251 | |
| 252 | void Host::SetBaseUIntSettingValue(const char* section, const char* key, uint value) |
| 253 | { |
| 254 | std::unique_lock lock(s_settings_mutex); |
| 255 | s_layered_settings_interface.GetLayer(LayeredSettingsInterface::LAYER_BASE)->SetUIntValue(section, key, value); |
| 256 | } |
| 257 | |
| 258 | void Host::SetBaseFloatSettingValue(const char* section, const char* key, float value) |
| 259 | { |
nothing calls this directly
no test coverage detected