Skip to content

Commit 7e38f4a

Browse files
author
adelikat
committed
Hex Editor - move Add to Ram Watch to Ctrl+W instead of A! A is a hex value that should be able to be typed in
1 parent 781ab15 commit 7e38f4a

File tree

2 files changed

+18
-17
lines changed

2 files changed

+18
-17
lines changed

BizHawk.MultiClient/tools/HexEditor.Designer.cs

Lines changed: 15 additions & 15 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

BizHawk.MultiClient/tools/HexEditor.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1000,8 +1000,9 @@ private void HexEditor_KeyDown(object sender, KeyEventArgs e)
10001000
else
10011001
UnFreezeAddress();
10021002
break;
1003-
case Keys.A:
1004-
AddToRamWatch();
1003+
case Keys.W:
1004+
if (e.Modifiers == Keys.Control)
1005+
AddToRamWatch();
10051006
break;
10061007
}
10071008
}

0 commit comments

Comments
 (0)