MCPcopy Create free account
hub / github.com/PCSX2/pcsx2 / GetBaseFloatSettingValue

Method GetBaseFloatSettingValue

pcsx2/Host.cpp:220–225  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

218}
219
220float 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
227double Host::GetBaseDoubleSettingValue(const char* section, const char* key, double default_value /* = 0.0f */)
228{

Callers

nothing calls this directly

Calls 2

GetLayerMethod · 0.80
GetFloatValueMethod · 0.45

Tested by

no test coverage detected