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;
|
||||
break;
|
||||
case "GBA":
|
||||
if (VersionInfo.DeveloperBuild)
|
||||
{
|
||||
var gba = new GBA(nextComm);
|
||||
gba.Load(rom.RomData);
|
||||
nextEmulator = gba;
|
||||
}
|
||||
|
||||
var gba = new GBA(nextComm);
|
||||
gba.Load(rom.RomData);
|
||||
nextEmulator = gba;
|
||||
break;
|
||||
case "N64":
|
||||
nextEmulator = new N64(nextComm, game, rom.RomData,
|
||||
|
|
Loading…
Reference in New Issue