Hook up quick savestate & quick loadstate hotkeys and map them to my preferred key mapping by default
This commit is contained in:
parent
3fdd1b2ee4
commit
d7b599ee5f
|
@ -38,6 +38,8 @@
|
|||
public string FrameAdvanceBinding = "F";
|
||||
public string ScreenshotBinding = "F12";
|
||||
public string ToggleFullscreenBinding = "LeftAlt+Return, RightAlt+Return";
|
||||
public string QuickSave = "I";
|
||||
public string QuickLoad = "P";
|
||||
|
||||
// SMS / GameGear Settings
|
||||
public bool SmsEnableFM = true;
|
||||
|
|
|
@ -138,6 +138,8 @@ namespace BizHawk.MultiClient
|
|||
controls.BindMulti("Frame Advance", Global.Config.FrameAdvanceBinding);
|
||||
controls.BindMulti("Screenshot", Global.Config.ScreenshotBinding);
|
||||
controls.BindMulti("Toggle Fullscreen", Global.Config.ToggleFullscreenBinding);
|
||||
controls.BindMulti("Quick Save State", Global.Config.QuickSave);
|
||||
controls.BindMulti("Quick Load State", Global.Config.QuickLoad);
|
||||
Global.ClientControls = controls;
|
||||
|
||||
var smsControls = new Controller(SMS.SmsController);
|
||||
|
@ -352,6 +354,18 @@ namespace BizHawk.MultiClient
|
|||
return;
|
||||
}
|
||||
|
||||
if (Global.ClientControls["Quick Save State"])
|
||||
{
|
||||
if (!IsNullEmulator())
|
||||
SaveState("QuickSave" + SaveSlot.ToString());
|
||||
}
|
||||
|
||||
if (Global.ClientControls["Quick Load State"])
|
||||
{
|
||||
if (!IsNullEmulator())
|
||||
LoadState("QuickSave" + SaveSlot.ToString());
|
||||
}
|
||||
|
||||
if (Global.ClientControls["Hard Reset"])
|
||||
{
|
||||
Global.ClientControls.UnpressButton("Hard Reset");
|
||||
|
|
Loading…
Reference in New Issue