mainform: set INTERIM = false. do not load GBA games when INTERIM = false
This commit is contained in:
parent
d734d0f44f
commit
83b38d9eb4
|
@ -25,7 +25,7 @@ namespace BizHawk.MultiClient
|
|||
|
||||
public partial class MainForm : Form
|
||||
{
|
||||
public bool INTERIM = true;
|
||||
public bool INTERIM = false;
|
||||
public const string EMUVERSION = "Version " + VersionInfo.MAINVERSION;
|
||||
public const string RELEASEDATE = "October 20, 2012";
|
||||
private Control renderTarget;
|
||||
|
@ -1902,6 +1902,8 @@ namespace BizHawk.MultiClient
|
|||
nextEmulator = c64;
|
||||
break;
|
||||
case "GBA":
|
||||
if (INTERIM)
|
||||
{
|
||||
string gbabiospath = PathManager.MakeAbsolutePath(Global.Config.PathGBABIOS, "GBA");
|
||||
byte[] gbabios = null;
|
||||
|
||||
|
@ -1917,6 +1919,7 @@ namespace BizHawk.MultiClient
|
|||
GBA gba = new GBA();
|
||||
gba.Load(rom.RomData, gbabios);
|
||||
nextEmulator = gba;
|
||||
}
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue