Fix autoloading of TI-83 keypad
This commit is contained in:
parent
c54d824600
commit
d5ed4369e9
|
@ -3326,17 +3326,17 @@ namespace BizHawk.Client.EmuHawk
|
|||
|
||||
if (result)
|
||||
{
|
||||
if (loader.LoadedEmulator is TI83 && Global.Config.TI83autoloadKeyPad)
|
||||
{
|
||||
GlobalWin.Tools.Load<TI83KeyPad>();
|
||||
}
|
||||
|
||||
Global.Emulator = loader.LoadedEmulator;
|
||||
Global.CoreComm = nextComm;
|
||||
Global.Game = loader.Game;
|
||||
CoreFileProvider.SyncCoreCommInputSignals();
|
||||
InputManager.SyncControls();
|
||||
|
||||
if (Global.Emulator is TI83 && Global.Config.TI83autoloadKeyPad)
|
||||
{
|
||||
GlobalWin.Tools.Load<TI83KeyPad>();
|
||||
}
|
||||
|
||||
if (loader.LoadedEmulator is NES)
|
||||
{
|
||||
var nes = loader.LoadedEmulator as NES;
|
||||
|
|
Loading…
Reference in New Issue