mirror of https://github.com/PCSX2/pcsx2.git
DEV9: Sleep instead of yield in RxThread
This commit is contained in:
parent
17519c21b4
commit
3a877a51b5
|
@ -54,7 +54,8 @@ void NetRxThread()
|
|||
Console.Error("DEV9: rx_fifo_can_rx() false after nif->recv(), dropping");
|
||||
}
|
||||
|
||||
std::this_thread::yield();
|
||||
using namespace std::chrono_literals;
|
||||
std::this_thread::sleep_for(1ms);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue