Change some warn logging to debug logging, it's fine

This commit is contained in:
Henrik Rydgard 2012-12-20 15:06:38 +01:00
parent 6a7e77ce1d
commit 39cae09ead

View file

@ -288,7 +288,7 @@ u32 sceAudioEnd()
u32 sceAudioOutput2Reserve(u32 sampleCount)
{
ERROR_LOG(HLE,"sceAudioOutput2Reserve(%i)", sampleCount);
DEBUG_LOG(HLE,"sceAudioOutput2Reserve(%i)", sampleCount);
chans[0].sampleCount = sampleCount;
chans[0].reserved = true;
return 0;
@ -305,20 +305,20 @@ u32 sceAudioOutput2OutputBlocking(u32 vol, u32 dataPtr)
u32 sceAudioOutput2ChangeLength(u32 sampleCount)
{
WARN_LOG(HLE,"sceAudioOutput2ChangeLength(%i)", sampleCount);
DEBUG_LOG(HLE,"sceAudioOutput2ChangeLength(%i)", sampleCount);
chans[0].sampleCount = sampleCount;
return 0;
}
u32 sceAudioOutput2GetRestSample()
{
WARN_LOG(HLE,"UNTESTED sceAudioOutput2GetRestSample()");
DEBUG_LOG(HLE,"UNTESTED sceAudioOutput2GetRestSample()");
return chans[0].sampleQueue.size() * 2;
}
u32 sceAudioOutput2Release()
{
WARN_LOG(HLE,"sceAudioOutput2Release()");
DEBUG_LOG(HLE,"sceAudioOutput2Release()");
chans[0].reserved = false;
return 0;
}