This commit is contained in:
feos 2023-10-25 21:02:08 +03:00
parent 7ac9bc26cd
commit 5ce0aa24a5
2 changed files with 5 additions and 0 deletions

View File

@ -66,6 +66,7 @@ namespace BizHawk.Client.Common
Bind("General", "Frame Inch");
Bind("General", "Toggle Messages");
Bind("General", "Toggle Display Nothing");
Bind("General", "Accept Background Input");
Bind("Save States", "Save State 1", "Shift+F1");
Bind("Save States", "Save State 2", "Shift+F2");

View File

@ -165,6 +165,10 @@ namespace BizHawk.Client.EmuHawk
// TODO: account for 1 when implemented
Config.DispSpeedupFeatures = Config.DispSpeedupFeatures == 0 ? 2 : 0;
break;
case "Accept Background Input":
Config.AcceptBackgroundInput ^= true;
AddOnScreenMessage($"Accept Background Input toggled {(Config.AcceptBackgroundInput ? "On" : "Off")}");
break;
// Save States
case "Save State 1":