| 797 | } |
| 798 | |
| 799 | void USB::SetDefaultConfiguration(SettingsInterface* si) |
| 800 | { |
| 801 | for (u32 port = 0; port < NUM_PORTS; port++) |
| 802 | { |
| 803 | const std::string section = GetConfigSection(port); |
| 804 | |
| 805 | si->ClearSection(section.c_str()); |
| 806 | si->SetStringValue(section.c_str(), "Type", "None"); |
| 807 | } |
| 808 | } |
| 809 | |
| 810 | void USB::CheckForConfigChanges(const Pcsx2Config& old_config) |
| 811 | { |
nothing calls this directly
no test coverage detected