From 243dcefc7efbe24dd76aa958c6c0caa5a49b759b Mon Sep 17 00:00:00 2001 From: zeromus Date: Mon, 17 Aug 2015 23:14:40 -0500 Subject: [PATCH] don't render audio if SoundEnabled=false. This makes unthrottled scenarios run faster when sound is disabled, as you would be expecting --- BizHawk.Client.EmuHawk/MainForm.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/BizHawk.Client.EmuHawk/MainForm.cs b/BizHawk.Client.EmuHawk/MainForm.cs index 72bfeb02fe..5753d159ef 100644 --- a/BizHawk.Client.EmuHawk/MainForm.cs +++ b/BizHawk.Client.EmuHawk/MainForm.cs @@ -2891,6 +2891,10 @@ namespace BizHawk.Client.EmuHawk coreskipaudio = IsTurboing && _currAviWriter == null; + //why not skip audio if the user doesnt want sound + if (!Global.Config.SoundEnabled) + coreskipaudio = true; + { bool render = !_throttle.skipnextframe || _currAviWriter != null; bool renderSound = !coreskipaudio;