From 28a459ab0e86b3311ef15ade55fbd9408220bf72 Mon Sep 17 00:00:00 2001 From: adelikat Date: Tue, 29 Jul 2014 02:26:42 +0000 Subject: [PATCH] Don't choose to load in snes unless it is a developer build --- BizHawk.Client.Common/RomLoader.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BizHawk.Client.Common/RomLoader.cs b/BizHawk.Client.Common/RomLoader.cs index db18337a56..76262f4484 100644 --- a/BizHawk.Client.Common/RomLoader.cs +++ b/BizHawk.Client.Common/RomLoader.cs @@ -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;