Don't choose to load in snes unless it is a developer build

This commit is contained in:
adelikat 2014-07-29 02:26:42 +00:00
parent c7f3d9796a
commit 28a459ab0e
1 changed files with 1 additions and 1 deletions

View File

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