mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-25 07:21:14 +01:00
e85fa26768
libusb transfer callbacks might be called immediately during transfer submission in some cases. (libusb doesn't even specify what thread the callback is invoked on.) In other words, it is possible to reach the transfer callback from the CPU thread, and not just from the USB event handling thread. So CoreTiming::FromThread::NON_CPU is incorrect and should instead be ANY.