From 9b9ef1de0c61cfa62ef282986a502cdcf38864ab Mon Sep 17 00:00:00 2001 From: jdpurcell Date: Sun, 25 Jan 2015 06:10:00 +0000 Subject: [PATCH] Tweak threshold for sound stuff. --- BizHawk.Client.EmuHawk/Sound.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/BizHawk.Client.EmuHawk/Sound.cs b/BizHawk.Client.EmuHawk/Sound.cs index d68b1cb908..8c383be95d 100644 --- a/BizHawk.Client.EmuHawk/Sound.cs +++ b/BizHawk.Client.EmuHawk/Sound.cs @@ -124,7 +124,10 @@ namespace BizHawk.Client.EmuHawk _lastWriteTime = 0; _lastWriteCursor = 0; - int minBufferFullnessSamples = MillisecondsToSamples(Global.Config.SoundBufferSizeMs >= 80 ? 55 : 35); + int minBufferFullnessSamples = MillisecondsToSamples( + Global.Config.SoundBufferSizeMs < 80 ? 35 : + Global.Config.SoundBufferSizeMs < 100 ? 45 : + 55); _outputProvider = new SoundOutputProvider(); _outputProvider.MaxSamplesDeficit = BufferSizeSamples - minBufferFullnessSamples; _outputProvider.BaseSoundProvider = _syncSoundProvider;