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

Method GetBaseUIntSettingValue

pcsx2/Host.cpp:213–218  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

211}
212
213uint 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
220float Host::GetBaseFloatSettingValue(const char* section, const char* key, float default_value /*= 0.0f*/)
221{

Callers

nothing calls this directly

Calls 2

GetLayerMethod · 0.80
GetUIntValueMethod · 0.45

Tested by

no test coverage detected