hotkey for toggling on screen messages

This commit is contained in:
adelikat 2023-01-14 12:00:37 -06:00
parent 566d47e263
commit 8c32157547
2 changed files with 4 additions and 0 deletions

View File

@ -64,6 +64,7 @@ namespace BizHawk.Client.Common
Bind("General", "Toggle Skip Lag Frame");
Bind("General", "Toggle Key Priority");
Bind("General", "Frame Inch");
Bind("General", "Toggle Messages");
Bind("Save States", "Save State 1", "Shift+F1");
Bind("Save States", "Save State 2", "Shift+F2");

View File

@ -158,6 +158,9 @@ namespace BizHawk.Client.EmuHawk
case "Toggle Key Priority":
ToggleKeyPriority();
break;
case "Toggle Messages":
Config.DisplayMessages ^= true;
break;
// Save States
case "Save State 1":