fix can't use neshawk (recent regression)

This commit is contained in:
zeromus 2016-11-19 20:07:17 -06:00
parent 2af7765ae0
commit 327606234f
2 changed files with 1 additions and 5 deletions

View File

@ -750,7 +750,7 @@ namespace BizHawk.Client.Common
if(Global.Config.NES_InQuickNES) preference = "quicknes";
//if user has saw fit to override in gamedb, apply that
if(Global.Config.CoreForcingViaGameDB)
if (Global.Config.CoreForcingViaGameDB && !string.IsNullOrEmpty(game.ForcedCore))
preference = game.ForcedCore;
//but only neshawk is accurate

View File

@ -194,10 +194,6 @@ namespace BizHawk.Emulation.Common
game.MetaData = items.Length >= 6 ? items[5] : null;
game.Region = items.Length >= 7 ? items[6] : string.Empty;
game.ForcedCore = items.Length >= 8 ? items[7].ToLowerInvariant() : string.Empty;
if (items.Length >= 8)
{
int zzz = 9;
}
if (db.ContainsKey(game.Hash))
{