| 313 | } |
| 314 | |
| 315 | bool ControllerSettingsWindow::getBoolValue(const char* section, const char* key, bool default_value) const |
| 316 | { |
| 317 | if (m_profile_interface) |
| 318 | return m_profile_interface->GetBoolValue(section, key, default_value); |
| 319 | else |
| 320 | return Host::GetBaseBoolSettingValue(section, key, default_value); |
| 321 | } |
| 322 | |
| 323 | s32 ControllerSettingsWindow::getIntValue(const char* section, const char* key, s32 default_value) const |
| 324 | { |
nothing calls this directly
no test coverage detected