From c597ff867756ac89f5ba4a9370a5c198f38e5753 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Francisco=20Jos=C3=A9=20Garc=C3=ADa=20Garc=C3=ADa?= Date: Sun, 31 Jul 2016 09:59:17 +0200 Subject: [PATCH] (VITA) Fix audio crash --- audio/drivers/psp_audio.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/audio/drivers/psp_audio.c b/audio/drivers/psp_audio.c index 0045cb2866..fa35b78b41 100644 --- a/audio/drivers/psp_audio.c +++ b/audio/drivers/psp_audio.c @@ -93,8 +93,8 @@ static int audioMainLoop(SceSize args, void* argp) sceAudioOutReleasePort(port); #else sceAudioSRCChRelease(); -#endif sceKernelExitThread(0); +#endif return 0; } @@ -219,7 +219,6 @@ static bool psp_audio_stop(void *data) #else sceKernelWaitThreadEnd(psp->thread, &timeout); #endif - return true; }