N64 - Support getting an expansion slot flag from the gamedb, and set Majora's Mask and Donkey Kong 64 to use it
This commit is contained in:
parent
1f69cdda9e
commit
a59793b55b
|
@ -61,6 +61,12 @@ namespace BizHawk.Emulation.Cores.Nintendo.N64
|
|||
_syncSettings = (N64SyncSettings)syncSettings ?? new N64SyncSettings();
|
||||
_settings = (N64Settings)settings ?? new N64Settings();
|
||||
|
||||
|
||||
if (game.OptionValue("expansionpak") != null && game.OptionValue("expansionpak") == "1")
|
||||
{
|
||||
_syncSettings.DisableExpansionSlot = false;
|
||||
}
|
||||
|
||||
byte country_code = rom[0x3E];
|
||||
switch (country_code)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue