diff --git a/BizHawk.Client.Common/config/Binding.cs b/BizHawk.Client.Common/config/Binding.cs index 06303df1b0..ceb8e0d99a 100644 --- a/BizHawk.Client.Common/config/Binding.cs +++ b/BizHawk.Client.Common/config/Binding.cs @@ -254,7 +254,9 @@ namespace BizHawk.Client.Common Bind("Analog", "X Up Large", toolTip: "For Virtual Pad"), Bind("Analog", "X Down Small", toolTip: "For Virtual Pad"), Bind("Analog", "X Down Large", toolTip: "For Virtual Pad"), - + + Bind("Tools", "Toggle All Cheats"), + }; //set ordinals based on order in list diff --git a/BizHawk.Client.EmuHawk/MainForm.Hotkey.cs b/BizHawk.Client.EmuHawk/MainForm.Hotkey.cs index 986b94e64b..45dc14748d 100644 --- a/BizHawk.Client.EmuHawk/MainForm.Hotkey.cs +++ b/BizHawk.Client.EmuHawk/MainForm.Hotkey.cs @@ -1,4 +1,6 @@ -using BizHawk.Client.Common; +using System.Linq; + +using BizHawk.Client.Common; using BizHawk.Emulation.Common.IEmulatorExtensions; namespace BizHawk.Client.EmuHawk @@ -321,6 +323,22 @@ namespace BizHawk.Client.EmuHawk case "Cheats": GlobalWin.Tools.Load(); break; + case "Toggle All Cheats": + if (Global.CheatList.Any()) + { + string type = " (mixed)"; + if (Global.CheatList.All(c => c.Enabled)) + { + type = " (off)"; + } + else if (Global.CheatList.All(c => !c.Enabled)) + { + type = " (on)"; + } + Global.CheatList.ToList().ForEach(x => x.Toggle()); + GlobalWin.OSD.AddMessage("Cheats toggled" + type); + } + break; case "TAStudio": GlobalWin.Tools.Load(); break;