| 467 | } |
| 468 | |
| 469 | int 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 | |
| 478 | float SettingsWindow::getEffectiveFloatValue(const char* section, const char* key, float default_value) const |
| 479 | { |
no test coverage detected