Audio: Correct log function name.

This commit is contained in:
Unknown W. Brackets 2023-12-01 22:56:06 -08:00
parent 83dc1c9705
commit d6ce03e1db
2 changed files with 2 additions and 2 deletions

View File

@ -144,7 +144,7 @@ static u32 sceAudioOutput(u32 chan, int vol, u32 samplePtr) {
ERROR_LOG(SCEAUDIO, "sceAudioOutput(%08x, %08x, %08x) - channel not reserved", chan, vol, samplePtr);
return SCE_ERROR_AUDIO_CHANNEL_NOT_INIT;
} else {
DEBUG_LOG(SCEAUDIO, "sceAudioOutputPanned(%08x, %08x, %08x)", chan, vol, samplePtr);
DEBUG_LOG(SCEAUDIO, "sceAudioOutput(%08x, %08x, %08x)", chan, vol, samplePtr);
if (vol >= 0) {
chans[chan].leftVolume = vol;
chans[chan].rightVolume = vol;

View File

@ -1004,7 +1004,7 @@ void VertexDecoderJitCache::Jit_Color5551() {
SRLI(tempReg2, tempReg1, 5);
SRLI(tempReg3, tempReg1, 10);
// Set tempReg3 to -1 if the alpha bit is set.
// Set scratchReg to -1 if the alpha bit is set.
SLLIW(scratchReg, tempReg1, 16);
SRAIW(scratchReg, scratchReg, 31);
// Now we can mask the flag.