Swapped channels in cps3. Is this correct??

This commit is contained in:
iq_132 2013-09-08 20:44:22 +00:00
parent c53dee8561
commit febaaeda43
1 changed files with 2 additions and 2 deletions

View File

@ -204,8 +204,8 @@ void cps3SndUpdate()
nLeftSample = BURN_SND_CLIP(nLeftSample + buffer[0]);
nRightSample = BURN_SND_CLIP(nRightSample + buffer[1]);
buffer[0] = nLeftSample;
buffer[1] = nRightSample;
buffer[0] = nRightSample; // swapped. correct??
buffer[1] = nLeftSample;
buffer += 2;
}