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

Method getEffectiveIntValue

pcsx2-qt/Settings/SettingsWindow.cpp:469–476  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

467}
468
469int SettingsWindow::getEffectiveIntValue(const char* section, const char* key, int default_value) const
470{
471 int value;
472 if (m_sif && m_sif->GetIntValue(section, key, &value))
473 return value;
474 else
475 return Host::GetBaseIntSettingValue(section, key, default_value);
476}
477
478float SettingsWindow::getEffectiveFloatValue(const char* section, const char* key, float default_value) const
479{

Calls 1

GetIntValueMethod · 0.45

Tested by

no test coverage detected