From 8186e1eddfe10dd31cefe30696c500f95bcdb9be Mon Sep 17 00:00:00 2001 From: adelikat Date: Sat, 16 Nov 2013 04:21:47 +0000 Subject: [PATCH] fix typing into numeric boxes on N64 virtualpad --- .../tools/VirtualPads/VirtualPadN64.cs | 26 ------------------- 1 file changed, 26 deletions(-) diff --git a/BizHawk.Client.EmuHawk/tools/VirtualPads/VirtualPadN64.cs b/BizHawk.Client.EmuHawk/tools/VirtualPads/VirtualPadN64.cs index d2fc51fd4c..c897b11653 100644 --- a/BizHawk.Client.EmuHawk/tools/VirtualPads/VirtualPadN64.cs +++ b/BizHawk.Client.EmuHawk/tools/VirtualPads/VirtualPadN64.cs @@ -46,32 +46,6 @@ namespace BizHawk.Client.EmuHawk CR.ControllerButton = Controller + " C Right"; } - protected override bool ProcessCmdKey(ref Message msg, Keys keyData) - { - if (keyData == Keys.Up) - { - //TODO: move to next logical key - Refresh(); - } - else if (keyData == Keys.Down) - { - Refresh(); - } - else if (keyData == Keys.Left) - { - Refresh(); - } - else if (keyData == Keys.Right) - { - Refresh(); - } - else if (keyData == Keys.Tab) - { - Refresh(); - } - return true; - } - public void Clear() { if (Global.Emulator.SystemId != "N64") return;