NES - Game Genie Encoder/Decoder - allow pasting into code box
This commit is contained in:
parent
32ca8fba61
commit
985cac53fe
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue