Fix mixing crackles/distortion in Konami k054539. Apparent in Monster Maulers Diablo opponent when he does his lightning attack.

This commit is contained in:
dinkc64 2014-10-18 07:24:31 +00:00
parent 4e0a70664f
commit f958262b9f
1 changed files with 2 additions and 2 deletions

View File

@ -618,8 +618,8 @@ else
nLeftSample = BURN_SND_CLIP(nLeftSample);
nRightSample = BURN_SND_CLIP(nRightSample);
pBuf[0] += nLeftSample;
pBuf[1] += nRightSample;
pBuf[0] = BURN_SND_CLIP(pBuf[0] + nLeftSample);
pBuf[1] = BURN_SND_CLIP(pBuf[1] + nRightSample);
pBuf += 2;
}