1
1
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2025-08-23 14:26:27 -05:00

Allow using ulong max value as yield (#263)

This commit is contained in:
gdkchan
2018-07-14 13:53:44 -03:00
committed by GitHub
parent 514218ab98
commit fc12fca962

View File

@@ -87,7 +87,7 @@ namespace Ryujinx.HLE.OsHle.Kernel
KThread CurrThread = Process.GetThread(ThreadState.Tpidr);
if (TimeoutNs == 0)
if (TimeoutNs == 0 || TimeoutNs == ulong.MaxValue)
{
Process.Scheduler.Yield(CurrThread);
}