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

Method GetBaseStringSettingValue

pcsx2/Host.cpp:178–183  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

176}
177
178std::string Host::GetBaseStringSettingValue(const char* section, const char* key, const char* default_value /*= ""*/)
179{
180 std::unique_lock lock(s_settings_mutex);
181 return s_layered_settings_interface.GetLayer(LayeredSettingsInterface::LAYER_BASE)
182 ->GetStringValue(section, key, default_value);
183}
184
185SmallString Host::GetBaseSmallStringSettingValue(const char* section, const char* key, const char* default_value /*= ""*/)
186{

Callers

nothing calls this directly

Calls 2

GetLayerMethod · 0.80
GetStringValueMethod · 0.45

Tested by

no test coverage detected