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

Method getStringValue

pcsx2-qt/Settings/ControllerSettingsWindow.cpp:331–339  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

329}
330
331std::string ControllerSettingsWindow::getStringValue(const char* section, const char* key, const char* default_value) const
332{
333 std::string value;
334 if (m_profile_interface)
335 value = m_profile_interface->GetStringValue(section, key, default_value);
336 else
337 value = Host::GetBaseStringSettingValue(section, key, default_value);
338 return value;
339}
340
341void ControllerSettingsWindow::setBoolValue(const char* section, const char* key, bool value)
342{

Callers

nothing calls this directly

Calls 1

GetStringValueMethod · 0.45

Tested by

no test coverage detected