From 1170b5cd060dfcabfdbd47814db02d422308cb2a Mon Sep 17 00:00:00 2001 From: goyuken Date: Wed, 27 Aug 2014 22:19:26 +0000 Subject: [PATCH] VBA: allow bios intro to be skipped even when in determinstic mode --- BizHawk.Emulation.Cores/Consoles/Nintendo/GBA/VBANext.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/GBA/VBANext.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/GBA/VBANext.cs index 45e46a6898..b5a828df3b 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/GBA/VBANext.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/GBA/VBANext.cs @@ -52,7 +52,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBA FES.RTCsec = _SyncSettings.RTCInitialTime.Second; if (DeterministicEmulation) { - FES.skipBios = false; + // FES.skipBios = false; // this is OK; it is deterministic and probably accurate FES.RTCUseRealTime = false; } @@ -423,7 +423,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBA public class SyncSettings { [DisplayName("Skip BIOS")] - [Description("Skips the BIOS intro. A BIOS file is still required. Forced to false for movie recording.")] + [Description("Skips the BIOS intro. A BIOS file is still required.")] [DefaultValue(true)] public bool SkipBios { get; set; } [DisplayName("RTC Use Real Time")]