diff --git a/BizHawk.Client.Common/config/Binding.cs b/BizHawk.Client.Common/config/Binding.cs index 6cc7bf552f..d5ff054c57 100644 --- a/BizHawk.Client.Common/config/Binding.cs +++ b/BizHawk.Client.Common/config/Binding.cs @@ -248,6 +248,9 @@ namespace BizHawk.Client.Common Bind("SNES", "Toggle OBJ 3"), Bind("SNES", "Toggle OBJ 4"), + Bind("GB", "GB Toggle BG"), + Bind("GB", "GB Toggle Obj"), + Bind("Analog", "Y Up Small", toolTip: "For Virtual Pad"), Bind("Analog", "Y Up Large", toolTip: "For Virtual Pad"), Bind("Analog", "Y Down Small", toolTip: "For Virtual Pad"), diff --git a/BizHawk.Client.EmuHawk/MainForm.Hotkey.cs b/BizHawk.Client.EmuHawk/MainForm.Hotkey.cs index 47495147cb..2f56b1277b 100644 --- a/BizHawk.Client.EmuHawk/MainForm.Hotkey.cs +++ b/BizHawk.Client.EmuHawk/MainForm.Hotkey.cs @@ -2,6 +2,7 @@ using BizHawk.Client.Common; using BizHawk.Emulation.Common.IEmulatorExtensions; +using BizHawk.Emulation.Cores.Nintendo.Gameboy; namespace BizHawk.Client.EmuHawk { @@ -633,6 +634,28 @@ namespace BizHawk.Client.EmuHawk SNES_ToggleOBJ4(); break; + // GB + case "GB Toggle BG": + if (Emulator is Gameboy) + { + var s = ((Gameboy)Emulator).GetSettings(); + s.DisplayBG ^= true; + ((Gameboy)Emulator).PutSettings(s); + GlobalWin.OSD.AddMessage("BG toggled " + (s.DisplayBG ? "on" : "off")); + } + + break; + case "GB Toggle Obj": + if (Emulator is Gameboy) + { + var s = ((Gameboy)Emulator).GetSettings(); + s.DisplayOBJ ^= true; + ((Gameboy)Emulator).PutSettings(s); + GlobalWin.OSD.AddMessage("OBJ toggled " + (s.DisplayBG ? "on" : "off")); + } + + break; + // Analog case "Y Up Small": GlobalWin.Tools.VirtualPad.BumpAnalogValue(null, Global.Config.Analog_SmallChange);