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:
parent
6a80336787
commit
5095f0c999
|
@ -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; }
|
||||
|
||||
|
|
|
@ -198,6 +198,7 @@ namespace BizHawk.Emulation.Cores.Consoles.Nintendo.NDS
|
|||
});
|
||||
|
||||
_activeSyncSettings.UseRealBIOS |= IsDSi;
|
||||
_activeSyncSettings.UseRealBIOS |= roms.Count == 2;
|
||||
|
||||
if (_activeSyncSettings.UseRealBIOS)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue