From c844af3bbb03f4873209894def83f64c17cef3e8 Mon Sep 17 00:00:00 2001 From: adelikat Date: Sun, 9 Aug 2020 15:15:26 -0500 Subject: [PATCH] RomLoader - remove an unused parameter in LoadOther --- src/BizHawk.Client.Common/RomLoader.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/BizHawk.Client.Common/RomLoader.cs b/src/BizHawk.Client.Common/RomLoader.cs index 264ee752b6..09a648a51d 100644 --- a/src/BizHawk.Client.Common/RomLoader.cs +++ b/src/BizHawk.Client.Common/RomLoader.cs @@ -368,7 +368,7 @@ namespace BizHawk.Client.Common throw new AggregateException("No core could load the game", exceptions); } - private void LoadOther(string path, CoreComm nextComm, HawkFile file, out IEmulator nextEmulator, out RomGame rom, out GameInfo game, out bool cancel) + private void LoadOther(CoreComm nextComm, HawkFile file, out IEmulator nextEmulator, out RomGame rom, out GameInfo game, out bool cancel) { cancel = false; rom = new RomGame(file); @@ -657,7 +657,7 @@ namespace BizHawk.Client.Common } else { - LoadOther(path, nextComm, file, out nextEmulator, out rom, out game, out cancel); // must be called after LoadXML because of SNES hacks + LoadOther(nextComm, file, out nextEmulator, out rom, out game, out cancel); // must be called after LoadXML because of SNES hacks } break; }