GC Adapter: never call libusb_reset_device()

There should be no need to do this, and performing a reset breaks things
on any other software using the device (e.g. another dolphin instance).
This commit is contained in:
mathieui 2015-03-02 01:13:45 +01:00
parent ad49de7740
commit ebedc80545
1 changed files with 0 additions and 1 deletions

View File

@ -235,7 +235,6 @@ void Reset()
if (s_handle)
{
libusb_release_interface(s_handle, 0);
libusb_reset_device(s_handle);
libusb_close(s_handle);
s_handle = nullptr;
}