mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-23 05:19:56 +00:00
Audio: Correct log function name.
This commit is contained in:
parent
83dc1c9705
commit
d6ce03e1db
@ -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;
|
||||
|
@ -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.
|
||||
|
Loading…
Reference in New Issue
Block a user