Audio port output in .wav file

This commit is contained in:
Nekotekina 2014-02-16 19:23:58 +04:00
parent 848c5dadf0
commit 4375b9dd2a
6 changed files with 168 additions and 31 deletions

View file

@ -463,9 +463,14 @@ int cellSysutilCheckCallback()
CPUThread& thr = Emu.GetCallbackThread();
while (Emu.IsRunning() && thr.IsAlive())
while (thr.IsAlive())
{
Sleep(1);
if (Emu.IsStopped())
{
ConLog.Warning("cellSysutilCheckCallback() aborted");
break;
}
}
return CELL_OK;