| 211 | } |
| 212 | |
| 213 | uint Host::GetBaseUIntSettingValue(const char* section, const char* key, uint default_value /*= 0*/) |
| 214 | { |
| 215 | std::unique_lock lock(s_settings_mutex); |
| 216 | return s_layered_settings_interface.GetLayer(LayeredSettingsInterface::LAYER_BASE) |
| 217 | ->GetUIntValue(section, key, default_value); |
| 218 | } |
| 219 | |
| 220 | float Host::GetBaseFloatSettingValue(const char* section, const char* key, float default_value /*= 0.0f*/) |
| 221 | { |
nothing calls this directly
no test coverage detected