From 6c5dc8532fd0dbd77b38f4577558f09095559d81 Mon Sep 17 00:00:00 2001 From: adelikat Date: Sat, 14 Mar 2020 14:23:13 -0500 Subject: [PATCH] remove some useless regions --- BizHawk.Client.Common/CoreFileProvider.cs | 4 ---- BizHawk.Emulation.Common/Interfaces/ICoreFileProvider.cs | 4 ---- 2 files changed, 8 deletions(-) diff --git a/BizHawk.Client.Common/CoreFileProvider.cs b/BizHawk.Client.Common/CoreFileProvider.cs index 6c4ea0ddf2..2fb23404c0 100644 --- a/BizHawk.Client.Common/CoreFileProvider.cs +++ b/BizHawk.Client.Common/CoreFileProvider.cs @@ -25,8 +25,6 @@ namespace BizHawk.Client.Common public string GetRetroSystemPath(GameInfo game) => PathManager.RetroSystemPath(game); - #region EmuLoadHelper api - private void FirmwareWarn(string sysID, string firmwareID, bool required, string msg = null) { if (required) @@ -106,8 +104,6 @@ namespace BizHawk.Client.Common return ret; } - #endregion - // this should go away now public static void SyncCoreCommInputSignals(CoreComm target) { diff --git a/BizHawk.Emulation.Common/Interfaces/ICoreFileProvider.cs b/BizHawk.Emulation.Common/Interfaces/ICoreFileProvider.cs index 62227fb8de..33278f4515 100644 --- a/BizHawk.Emulation.Common/Interfaces/ICoreFileProvider.cs +++ b/BizHawk.Emulation.Common/Interfaces/ICoreFileProvider.cs @@ -22,8 +22,6 @@ namespace BizHawk.Emulation.Common /// string GetRetroSystemPath(GameInfo game); - #region EmuLoadHelper api - /// /// Get a firmware as a byte array /// @@ -34,7 +32,5 @@ namespace BizHawk.Emulation.Common byte[] GetFirmware(string sysId, string firmwareId, bool required, string msg = null); byte[] GetFirmwareWithGameInfo(string sysId, string firmwareId, bool required, out GameInfo gi, string msg = null); - - #endregion } }