OBS-URL: https://build.opensuse.org/request/show/456446 OBS-URL: https://build.opensuse.org/package/show/hardware/xboxdrv?expand=0&rev=7
15 lines
322 B
Diff
15 lines
322 B
Diff
--- a/src/usb_gsource.cpp
|
|
+++ b/src/usb_gsource.cpp
|
|
@@ -174,7 +174,10 @@ USBGSource::on_source_dispatch(GSource*
|
|
gboolean
|
|
USBGSource::on_source()
|
|
{
|
|
- libusb_handle_events(NULL);
|
|
+ struct timeval to;
|
|
+ to.tv_sec = 0;
|
|
+ to.tv_usec = 0;
|
|
+ libusb_handle_events_timeout_completed(NULL, &to, NULL);
|
|
return TRUE;
|
|
}
|
|
|