diff --git a/BizHawk.Client.EmuHawk/Sound/Sound.cs b/BizHawk.Client.EmuHawk/Sound/Sound.cs index 4c10058d60..0a3c3eef94 100644 --- a/BizHawk.Client.EmuHawk/Sound/Sound.cs +++ b/BizHawk.Client.EmuHawk/Sound/Sound.cs @@ -172,7 +172,12 @@ namespace BizHawk.Client.EmuHawk { _outputProvider.BaseSoundProvider.GetSamplesSync(out samples, out samplesProvided); - while (samplesNeeded < samplesProvided && !Global.DisableSecondaryThrottling) + if (Global.DisableSecondaryThrottling && samplesProvided > samplesNeeded) + { + return; + } + + while (samplesProvided > samplesNeeded) { Thread.Sleep((samplesProvided - samplesNeeded) / (SampleRate / 1000)); // Let the audio clock control sleep time samplesNeeded = _outputDevice.CalculateSamplesNeeded();