| 330 | } |
| 331 | |
| 332 | uint Host::GetUIntSettingValue(const char* section, const char* key, uint default_value /*= 0*/) |
| 333 | { |
| 334 | std::unique_lock lock(s_settings_mutex); |
| 335 | return s_layered_settings_interface.GetUIntValue(section, key, default_value); |
| 336 | } |
| 337 | |
| 338 | float Host::GetFloatSettingValue(const char* section, const char* key, float default_value /*= 0.0f*/) |
| 339 | { |
nothing calls this directly
no test coverage detected