| 476 | } |
| 477 | |
| 478 | float 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 | |
| 487 | std::string SettingsWindow::getEffectiveStringValue(const char* section, const char* key, const char* default_value) const |
| 488 | { |
no test coverage detected