force real bios use when gba cart is present for melonds

melonds' freebios doesn't work with gba cart usage
This commit is contained in:
CasualPokePlayer 2023-11-08 08:27:42 -08:00
parent 6a80336787
commit 5095f0c999
2 changed files with 2 additions and 1 deletions

View File

@ -276,7 +276,7 @@ namespace BizHawk.Emulation.Cores.Consoles.Nintendo.NDS
public bool UseDSi { get; set; }
[DisplayName("Use Real BIOS")]
[Description("If true, real BIOS files will be used. Forced true for DSi.")]
[Description("If true, real BIOS files will be used. Forced true for DSi or when a GBA cartridge is present.")]
[DefaultValue(false)]
public bool UseRealBIOS { get; set; }

View File

@ -198,6 +198,7 @@ namespace BizHawk.Emulation.Cores.Consoles.Nintendo.NDS
});
_activeSyncSettings.UseRealBIOS |= IsDSi;
_activeSyncSettings.UseRealBIOS |= roms.Count == 2;
if (_activeSyncSettings.UseRealBIOS)
{