delete some vestigial coreComm/CoreFileProvider code

This commit is contained in:
adelikat 2020-03-15 09:57:54 -05:00
parent 983a9a3a11
commit 8c7b0c6ff1
1 changed files with 0 additions and 5 deletions

View File

@ -216,7 +216,6 @@ namespace BizHawk.Client.EmuHawk
_throttle = new Throttle();
var comm = CreateCoreComm();
Emulator = new NullEmulator();
GlobalWin.Tools = new ToolManager(this, Config, Emulator);
Global.CheatList = new CheatCollection();
@ -251,7 +250,6 @@ namespace BizHawk.Client.EmuHawk
MessageBox.Show(e.Message);
}
Database.LoadDatabase(Path.Combine(PathManager.GetExeDirectoryAbsolute(), "gamedb", "gamedb.txt"));
// TODO GL - a lot of disorganized wiring-up here
@ -318,7 +316,6 @@ namespace BizHawk.Client.EmuHawk
Input.Initialize(this);
InitControls();
CoreFileProvider.SyncCoreCommInputSignals(comm);
Global.ActiveController = new Controller(NullController.Instance.Definition);
Global.AutoFireController = _autofireNullControls;
Global.AutofireStickyXORAdapter.SetOnOffPatternFromConfig();
@ -3882,8 +3879,6 @@ namespace BizHawk.Client.EmuHawk
CheatList.SaveOnClose();
Emulator.Dispose();
var coreComm = CreateCoreComm();
CoreFileProvider.SyncCoreCommInputSignals(coreComm);
Emulator = new NullEmulator();
ClientApi.UpdateEmulatorAndVP(Emulator);
Global.ActiveController = new Controller(NullController.Instance.Definition);