remove some useless regions

This commit is contained in:
adelikat 2020-03-14 14:23:13 -05:00
parent d72d8e79ff
commit 6c5dc8532f
2 changed files with 0 additions and 8 deletions

View File

@ -25,8 +25,6 @@ namespace BizHawk.Client.Common
public string GetRetroSystemPath(GameInfo game) public string GetRetroSystemPath(GameInfo game)
=> PathManager.RetroSystemPath(game); => PathManager.RetroSystemPath(game);
#region EmuLoadHelper api
private void FirmwareWarn(string sysID, string firmwareID, bool required, string msg = null) private void FirmwareWarn(string sysID, string firmwareID, bool required, string msg = null)
{ {
if (required) if (required)
@ -106,8 +104,6 @@ namespace BizHawk.Client.Common
return ret; return ret;
} }
#endregion
// this should go away now // this should go away now
public static void SyncCoreCommInputSignals(CoreComm target) public static void SyncCoreCommInputSignals(CoreComm target)
{ {

View File

@ -22,8 +22,6 @@ namespace BizHawk.Emulation.Common
/// </summary> /// </summary>
string GetRetroSystemPath(GameInfo game); string GetRetroSystemPath(GameInfo game);
#region EmuLoadHelper api
/// <summary> /// <summary>
/// Get a firmware as a byte array /// Get a firmware as a byte array
/// </summary> /// </summary>
@ -34,7 +32,5 @@ namespace BizHawk.Emulation.Common
byte[] GetFirmware(string sysId, string firmwareId, bool required, string msg = null); 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); byte[] GetFirmwareWithGameInfo(string sysId, string firmwareId, bool required, out GameInfo gi, string msg = null);
#endregion
} }
} }