GBHawk: another audio fix, not sure where the root cause is

This commit is contained in:
alyosha-tas 2018-07-02 07:46:27 -04:00
parent 123df38731
commit 5ce8c8790c
1 changed files with 3 additions and 1 deletions

View File

@ -156,7 +156,9 @@ namespace BizHawk.Client.EmuHawk
public void WriteSamples(short[] samples, int sampleCount)
{
if (sampleCount == 0) return;
_deviceBuffer.Write(samples, 0, sampleCount * Sound.ChannelCount, _actualWriteOffsetBytes, LockFlags.None);
int total = sampleCount * Sound.ChannelCount;
if (total > samples.Length) { total = samples.Length; }
_deviceBuffer.Write(samples, 0, total, _actualWriteOffsetBytes, LockFlags.None);
_actualWriteOffsetBytes = (_actualWriteOffsetBytes + (sampleCount * Sound.BlockAlign)) % BufferSizeBytes;
_filledBufferSizeBytes += sampleCount * Sound.BlockAlign;
}