From 4bae30095bc6e832449594f35c9d6114193b285f Mon Sep 17 00:00:00 2001 From: oioitff Date: Sat, 13 Apr 2013 17:57:09 +0800 Subject: [PATCH] Audio format should be set here. --- Core/HLE/sceAudio.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Core/HLE/sceAudio.cpp b/Core/HLE/sceAudio.cpp index fa35f10c89..4d14626999 100644 --- a/Core/HLE/sceAudio.cpp +++ b/Core/HLE/sceAudio.cpp @@ -169,6 +169,7 @@ u32 sceAudioChReserve(u32 chan, u32 sampleCount, u32 format) { DEBUG_LOG(HLE, "sceAudioChReserve(%08x, %08x, %08x)", chan, sampleCount, format); chans[chan].sampleCount = sampleCount; + chans[chan].format = format; chans[chan].reserved = true; return chan; }