| 321 | } |
| 322 | |
| 323 | s32 ControllerSettingsWindow::getIntValue(const char* section, const char* key, s32 default_value) const |
| 324 | { |
| 325 | if (m_profile_interface) |
| 326 | return m_profile_interface->GetIntValue(section, key, default_value); |
| 327 | else |
| 328 | return Host::GetBaseIntSettingValue(section, key, default_value); |
| 329 | } |
| 330 | |
| 331 | std::string ControllerSettingsWindow::getStringValue(const char* section, const char* key, const char* default_value) const |
| 332 | { |
nothing calls this directly
no test coverage detected