mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-26 15:49:50 -06:00
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:
@ -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;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user