From 5ce8c8790c98639af095a8d282d894ed841800d7 Mon Sep 17 00:00:00 2001 From: alyosha-tas Date: Mon, 2 Jul 2018 07:46:27 -0400 Subject: [PATCH] GBHawk: another audio fix, not sure where the root cause is --- BizHawk.Client.EmuHawk/Sound/Output/DirectSoundSoundOutput.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/BizHawk.Client.EmuHawk/Sound/Output/DirectSoundSoundOutput.cs b/BizHawk.Client.EmuHawk/Sound/Output/DirectSoundSoundOutput.cs index 10e9cef191..df362aa7aa 100644 --- a/BizHawk.Client.EmuHawk/Sound/Output/DirectSoundSoundOutput.cs +++ b/BizHawk.Client.EmuHawk/Sound/Output/DirectSoundSoundOutput.cs @@ -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; }