Don't choose to load in snes unless it is a developer build
This commit is contained in:
parent
c7f3d9796a
commit
28a459ab0e
|
@ -305,7 +305,7 @@ namespace BizHawk.Client.Common
|
|||
switch (game.System)
|
||||
{
|
||||
case "SNES":
|
||||
if (Global.Config.SNES_InSnes9x)
|
||||
if (Global.Config.SNES_InSnes9x && VersionInfo.DeveloperBuild)
|
||||
{
|
||||
var snes = new Emulation.Cores.Nintendo.SNES9X.Snes9x(nextComm, rom.FileData);
|
||||
nextEmulator = snes;
|
||||
|
|
Loading…
Reference in New Issue