don't render audio if SoundEnabled=false. This makes unthrottled scenarios run faster when sound is disabled, as you would be expecting

This commit is contained in:
zeromus 2015-08-17 23:14:40 -05:00
parent b7ed34db1c
commit 243dcefc7e
1 changed files with 4 additions and 0 deletions

View File

@ -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;