fix #3481
This commit is contained in:
parent
7ac9bc26cd
commit
5ce0aa24a5
|
@ -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");
|
||||
|
|
|
@ -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":
|
||||
|
|
Loading…
Reference in New Issue