DEV9: Sleep instead of yield in RxThread

This commit is contained in:
TheLastRar 2021-05-12 20:05:43 +01:00 committed by lightningterror
parent 17519c21b4
commit 3a877a51b5
1 changed files with 2 additions and 1 deletions

View File

@ -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);
}
}