(VITA) Fix audio crash

This commit is contained in:
Francisco José García García 2016-07-31 09:59:17 +02:00
parent 80c3bf0ec2
commit c597ff8677

View File

@ -93,8 +93,8 @@ static int audioMainLoop(SceSize args, void* argp)
sceAudioOutReleasePort(port); sceAudioOutReleasePort(port);
#else #else
sceAudioSRCChRelease(); sceAudioSRCChRelease();
#endif
sceKernelExitThread(0); sceKernelExitThread(0);
#endif
return 0; return 0;
} }
@ -219,7 +219,6 @@ static bool psp_audio_stop(void *data)
#else #else
sceKernelWaitThreadEnd(psp->thread, &timeout); sceKernelWaitThreadEnd(psp->thread, &timeout);
#endif #endif
return true; return true;
} }