NES - Game Genie Encoder/Decoder - allow pasting into code box

This commit is contained in:
adelikat 2012-09-16 17:57:26 +00:00
parent 32ca8fba61
commit 985cac53fe
1 changed files with 5 additions and 0 deletions

View File

@ -57,6 +57,11 @@ namespace BizHawk.MultiClient
private void GameGenieCode_KeyPress(object sender, KeyPressEventArgs e)
{
if (e.KeyChar == '\b' || e.KeyChar == 22)
{
return;
}
//Make uppercase
if (e.KeyChar >= 97 && e.KeyChar < 123)
e.KeyChar -= (char)32;