allow GBA roms to be loaded in non-developer builds. There no reason to completely prohibit it
This commit is contained in:
parent
7cd831c0e4
commit
b4f3014d31
|
@ -403,13 +403,9 @@ namespace BizHawk.Client.Common
|
||||||
nextEmulator = c64;
|
nextEmulator = c64;
|
||||||
break;
|
break;
|
||||||
case "GBA":
|
case "GBA":
|
||||||
if (VersionInfo.DeveloperBuild)
|
var gba = new GBA(nextComm);
|
||||||
{
|
gba.Load(rom.RomData);
|
||||||
var gba = new GBA(nextComm);
|
nextEmulator = gba;
|
||||||
gba.Load(rom.RomData);
|
|
||||||
nextEmulator = gba;
|
|
||||||
}
|
|
||||||
|
|
||||||
break;
|
break;
|
||||||
case "N64":
|
case "N64":
|
||||||
nextEmulator = new N64(nextComm, game, rom.RomData,
|
nextEmulator = new N64(nextComm, game, rom.RomData,
|
||||||
|
|
Loading…
Reference in New Issue