From 3cc74932a758e83fd8870a7bf4ffc37e74acadd2 Mon Sep 17 00:00:00 2001 From: adelikat Date: Tue, 30 May 2017 12:12:10 -0400 Subject: [PATCH] Set C64 to released, and remove some hacks that hid C64 in some places --- BizHawk.Client.EmuHawk/config/PathConfig.cs | 2 +- BizHawk.Emulation.Common/SystemLookup.cs | 13 +------------ .../Computers/Commodore64/C64.cs | 2 +- 3 files changed, 3 insertions(+), 14 deletions(-) diff --git a/BizHawk.Client.EmuHawk/config/PathConfig.cs b/BizHawk.Client.EmuHawk/config/PathConfig.cs index cff36b6ee7..4b32547f3c 100644 --- a/BizHawk.Client.EmuHawk/config/PathConfig.cs +++ b/BizHawk.Client.EmuHawk/config/PathConfig.cs @@ -21,7 +21,7 @@ namespace BizHawk.Client.EmuHawk return; } - string[] coresToHide = { "C64" }; + string[] coresToHide = { }; foreach (var core in coresToHide) { diff --git a/BizHawk.Emulation.Common/SystemLookup.cs b/BizHawk.Emulation.Common/SystemLookup.cs index eecb305ed0..f8e1a0de3c 100644 --- a/BizHawk.Emulation.Common/SystemLookup.cs +++ b/BizHawk.Emulation.Common/SystemLookup.cs @@ -50,18 +50,7 @@ namespace BizHawk.Emulation.Common } } - public IEnumerable AllSystems - { - get - { - if (VersionInfo.DeveloperBuild) - { - return _systems; - } - - return _systems.Where(s => s.SystemId != "C64"); - } - } + public IEnumerable AllSystems => _systems; public class SystemInfo { diff --git a/BizHawk.Emulation.Cores/Computers/Commodore64/C64.cs b/BizHawk.Emulation.Cores/Computers/Commodore64/C64.cs index 8b0b27046c..f798107da5 100644 --- a/BizHawk.Emulation.Cores/Computers/Commodore64/C64.cs +++ b/BizHawk.Emulation.Cores/Computers/Commodore64/C64.cs @@ -13,7 +13,7 @@ namespace BizHawk.Emulation.Cores.Computers.Commodore64 "C64Hawk", "SaxxonPike", isPorted: false, - isReleased: false)] + isReleased: true)] public sealed partial class C64 : IEmulator, IRegionable, IBoardInfo { public C64(CoreComm comm, IEnumerable roms, GameInfo game, object settings, object syncSettings)