Have TAS profile also enable NDS BIOS
This commit is contained in:
parent
1ca610b424
commit
67466be2f4
|
@ -137,6 +137,11 @@ namespace BizHawk.Client.EmuHawk
|
||||||
// NES
|
// NES
|
||||||
_config.PreferredCores[VSystemID.Raw.NES] = CoreNames.QuickNes;
|
_config.PreferredCores[VSystemID.Raw.NES] = CoreNames.QuickNes;
|
||||||
|
|
||||||
|
// NDS
|
||||||
|
var ssMelonDS = GetSyncSettings<NDS, NDS.NDSSyncSettings>();
|
||||||
|
ssMelonDS.SkipFirmware = true;
|
||||||
|
PutSyncSettings<NDS>(ssMelonDS);
|
||||||
|
|
||||||
// GB
|
// GB
|
||||||
_config.PreferredCores[VSystemID.Raw.GB] = CoreNames.Gambatte;
|
_config.PreferredCores[VSystemID.Raw.GB] = CoreNames.Gambatte;
|
||||||
_config.PreferredCores[VSystemID.Raw.GBC] = CoreNames.Gambatte;
|
_config.PreferredCores[VSystemID.Raw.GBC] = CoreNames.Gambatte;
|
||||||
|
@ -221,6 +226,12 @@ namespace BizHawk.Client.EmuHawk
|
||||||
// NES
|
// NES
|
||||||
_config.PreferredCores[VSystemID.Raw.NES] = CoreNames.NesHawk;
|
_config.PreferredCores[VSystemID.Raw.NES] = CoreNames.NesHawk;
|
||||||
|
|
||||||
|
// NDS
|
||||||
|
var ssMelonDS = GetSyncSettings<NDS, NDS.NDSSyncSettings>();
|
||||||
|
ssMelonDS.SkipFirmware = false;
|
||||||
|
ssMelonDS.UseRealBIOS = true;
|
||||||
|
PutSyncSettings<NDS>(ssMelonDS);
|
||||||
|
|
||||||
// GB
|
// GB
|
||||||
_config.PreferredCores[VSystemID.Raw.GB] = CoreNames.Gambatte;
|
_config.PreferredCores[VSystemID.Raw.GB] = CoreNames.Gambatte;
|
||||||
_config.PreferredCores[VSystemID.Raw.GBC] = CoreNames.Gambatte;
|
_config.PreferredCores[VSystemID.Raw.GBC] = CoreNames.Gambatte;
|
||||||
|
|
|
@ -164,7 +164,7 @@ namespace BizHawk.Emulation.Cores.Consoles.Nintendo.NDS
|
||||||
|
|
||||||
[DisplayName("Skip Firmware")]
|
[DisplayName("Skip Firmware")]
|
||||||
[Description("If true, initial firmware boot will be skipped. Forced true if firmware cannot be booted (no real bios or missing firmware).")]
|
[Description("If true, initial firmware boot will be skipped. Forced true if firmware cannot be booted (no real bios or missing firmware).")]
|
||||||
[DefaultValue(false)]
|
[DefaultValue(true)]
|
||||||
public bool SkipFirmware { get; set; }
|
public bool SkipFirmware { get; set; }
|
||||||
|
|
||||||
[DisplayName("Firmware Override")]
|
[DisplayName("Firmware Override")]
|
||||||
|
|
Loading…
Reference in New Issue