ReinUsesLisp 7 жил өмнө
parent
commit
b92189cb71

+ 2 - 1
Ryujinx.Audio/OpenAL/OpenALAudioOut.cs

@@ -222,7 +222,8 @@ namespace Ryujinx.Audio.OpenAL
                     Td.CallReleaseCallbackIfNeeded();
                 }
 
-                Thread.Yield();
+                //If it's not slept it will waste cycles
+                Thread.Sleep(10);
             }
             while (KeepPolling);
         }