Revert "hack rom loader to keep doing the bullshit we've been doing for 8 years now, where Game.System == "GBC" results in an Emulator with a SystemID. Don't revert without volunteering to fix tasvideos"

This reverts commit 31bf9b9147.
This commit is contained in:
nattthebear 2020-08-09 16:31:49 -04:00
parent 31bf9b9147
commit 5a0b49726e
1 changed files with 1 additions and 17 deletions

View File

@ -333,23 +333,7 @@ namespace BizHawk.Client.Common
private IEmulator MakeCoreFromCoreInventory(CoreInventoryParameters cip)
{
var preferredSystem = cip.Game.System;
if (preferredSystem == "GBC")
{
preferredSystem = "GB";
}
if (preferredSystem.In("GG", "SG"))
{
preferredSystem = "SMS";
}
if (preferredSystem == "SGX")
{
preferredSystem = "PCE";
}
_config.PreferredCores.TryGetValue(preferredSystem, out var preferredCore);
_config.PreferredCores.TryGetValue(cip.Game.System, out var preferredCore);
var forcedCore = cip.Game.ForcedCore;
var cores = CoreInventory.Instance.GetCores(cip.Game.System)
.OrderBy(c =>