| 329 | } |
| 330 | |
| 331 | std::string ControllerSettingsWindow::getStringValue(const char* section, const char* key, const char* default_value) const |
| 332 | { |
| 333 | std::string value; |
| 334 | if (m_profile_interface) |
| 335 | value = m_profile_interface->GetStringValue(section, key, default_value); |
| 336 | else |
| 337 | value = Host::GetBaseStringSettingValue(section, key, default_value); |
| 338 | return value; |
| 339 | } |
| 340 | |
| 341 | void ControllerSettingsWindow::setBoolValue(const char* section, const char* key, bool value) |
| 342 | { |
nothing calls this directly
no test coverage detected