gba: disable outside interim
This commit is contained in:
parent
8aad53e76c
commit
ea19ae9d65
|
@ -1830,6 +1830,8 @@ namespace BizHawk.MultiClient
|
||||||
nextEmulator = c64;
|
nextEmulator = c64;
|
||||||
break;
|
break;
|
||||||
case "GBA":
|
case "GBA":
|
||||||
|
if (INTERIM)
|
||||||
|
{
|
||||||
string gbabiospath = Path.Combine(PathManager.MakeAbsolutePath(Global.Config.PathGBAFirmwares, "GBA"), "gbabios.rom");
|
string gbabiospath = Path.Combine(PathManager.MakeAbsolutePath(Global.Config.PathGBAFirmwares, "GBA"), "gbabios.rom");
|
||||||
byte[] gbabios = null;
|
byte[] gbabios = null;
|
||||||
|
|
||||||
|
@ -1845,6 +1847,7 @@ namespace BizHawk.MultiClient
|
||||||
GBA gba = new GBA();
|
GBA gba = new GBA();
|
||||||
gba.Load(rom.RomData, gbabios);
|
gba.Load(rom.RomData, gbabios);
|
||||||
nextEmulator = gba;
|
nextEmulator = gba;
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue