gba: disable outside interim

This commit is contained in:
goyuken 2012-11-24 04:46:43 +00:00
parent 8aad53e76c
commit ea19ae9d65
1 changed files with 16 additions and 13 deletions

View File

@ -1830,6 +1830,8 @@ namespace BizHawk.MultiClient
nextEmulator = c64;
break;
case "GBA":
if (INTERIM)
{
string gbabiospath = Path.Combine(PathManager.MakeAbsolutePath(Global.Config.PathGBAFirmwares, "GBA"), "gbabios.rom");
byte[] gbabios = null;
@ -1845,6 +1847,7 @@ namespace BizHawk.MultiClient
GBA gba = new GBA();
gba.Load(rom.RomData, gbabios);
nextEmulator = gba;
}
break;
}
}