Audio format should be set here.

This commit is contained in:
oioitff 2013-04-13 17:57:09 +08:00
parent d92dbf8f6d
commit 4bae30095b

View File

@ -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;
}