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:
parent
b7ed34db1c
commit
243dcefc7e
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue