VBA: allow bios intro to be skipped even when in determinstic mode
This commit is contained in:
parent
6437203236
commit
1170b5cd06
|
@ -52,7 +52,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBA
|
||||||
FES.RTCsec = _SyncSettings.RTCInitialTime.Second;
|
FES.RTCsec = _SyncSettings.RTCInitialTime.Second;
|
||||||
if (DeterministicEmulation)
|
if (DeterministicEmulation)
|
||||||
{
|
{
|
||||||
FES.skipBios = false;
|
// FES.skipBios = false; // this is OK; it is deterministic and probably accurate
|
||||||
FES.RTCUseRealTime = false;
|
FES.RTCUseRealTime = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -423,7 +423,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBA
|
||||||
public class SyncSettings
|
public class SyncSettings
|
||||||
{
|
{
|
||||||
[DisplayName("Skip BIOS")]
|
[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)]
|
[DefaultValue(true)]
|
||||||
public bool SkipBios { get; set; }
|
public bool SkipBios { get; set; }
|
||||||
[DisplayName("RTC Use Real Time")]
|
[DisplayName("RTC Use Real Time")]
|
||||||
|
|
Loading…
Reference in New Issue