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:
parent
ad49de7740
commit
ebedc80545
|
@ -235,7 +235,6 @@ void Reset()
|
||||||
if (s_handle)
|
if (s_handle)
|
||||||
{
|
{
|
||||||
libusb_release_interface(s_handle, 0);
|
libusb_release_interface(s_handle, 0);
|
||||||
libusb_reset_device(s_handle);
|
|
||||||
libusb_close(s_handle);
|
libusb_close(s_handle);
|
||||||
s_handle = nullptr;
|
s_handle = nullptr;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue