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

Method GetStringValue

pcsx2/INISettingsInterface.cpp:212–220  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

210}
211
212bool INISettingsInterface::GetStringValue(const char* section, const char* key, std::string* value) const
213{
214 const char* str_value = m_ini.GetValue(section, key);
215 if (!str_value)
216 return false;
217
218 value->assign(str_value);
219 return true;
220}
221
222bool INISettingsInterface::GetStringValue(const char* section, const char* key, SmallStringBase* value) const
223{

Callers 15

Main.cppFile · 0.45
BindWidgetToEnumSettingFunction · 0.45
loadCoverURLsMethod · 0.45
getStringValueMethod · 0.45
onEthHostImportMethod · 0.45
getStringValueMethod · 0.45

Calls 2

GetValueMethod · 0.80
assignMethod · 0.45

Tested by

no test coverage detected