fix can't use neshawk (recent regression)
This commit is contained in:
parent
2af7765ae0
commit
327606234f
|
@ -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
|
||||
|
|
|
@ -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))
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue