allow GBA roms to be loaded in non-developer builds. There no reason to completely prohibit it

This commit is contained in:
adelikat 2014-07-19 23:35:26 +00:00
parent 7cd831c0e4
commit b4f3014d31
1 changed files with 3 additions and 7 deletions

View File

@ -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,