Fix mixing crackles/distortion in Konami k054539. Apparent in Monster Maulers Diablo opponent when he does his lightning attack.
This commit is contained in:
parent
4e0a70664f
commit
f958262b9f
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue