| 218 | } |
| 219 | |
| 220 | float Host::GetBaseFloatSettingValue(const char* section, const char* key, float default_value /*= 0.0f*/) |
| 221 | { |
| 222 | std::unique_lock lock(s_settings_mutex); |
| 223 | return s_layered_settings_interface.GetLayer(LayeredSettingsInterface::LAYER_BASE) |
| 224 | ->GetFloatValue(section, key, default_value); |
| 225 | } |
| 226 | |
| 227 | double Host::GetBaseDoubleSettingValue(const char* section, const char* key, double default_value /* = 0.0f */) |
| 228 | { |
nothing calls this directly
no test coverage detected