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

Method getEffectiveFloatValue

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

Source from the content-addressed store, hash-verified

476}
477
478float SettingsWindow::getEffectiveFloatValue(const char* section, const char* key, float default_value) const
479{
480 float value;
481 if (m_sif && m_sif->GetFloatValue(section, key, &value))
482 return value;
483 else
484 return Host::GetBaseFloatSettingValue(section, key, default_value);
485}
486
487std::string SettingsWindow::getEffectiveStringValue(const char* section, const char* key, const char* default_value) const
488{

Calls 1

GetFloatValueMethod · 0.45

Tested by

no test coverage detected