From cb6e6d2d1389d7303442fe7026129012ab7a22a0 Mon Sep 17 00:00:00 2001 From: "andres.delikat" Date: Sat, 23 Apr 2011 20:59:07 +0000 Subject: [PATCH] Fix so that Number pad keys can be mapped to hotkeys & controllers without crashing --- BizHawk.MultiClient/config/InputWidget.cs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/BizHawk.MultiClient/config/InputWidget.cs b/BizHawk.MultiClient/config/InputWidget.cs index a020c668e4..859130fefd 100644 --- a/BizHawk.MultiClient/config/InputWidget.cs +++ b/BizHawk.MultiClient/config/InputWidget.cs @@ -85,14 +85,16 @@ namespace BizHawk.MultiClient { public override string ToString() { - string str = ""; - if((modifiers & Keys.Shift)!=0) + string str = ""; + if((modifiers & Keys.Shift)!=0) str += "LeftShift + "; if ((modifiers & Keys.Control) != 0) str += "LeftControl + "; if ((modifiers & Keys.Alt) != 0) str += "LeftAlt + "; str += key.ToString(); + if (str.Substring(0, 6) == "NumPad") + str = str.Insert(3, "ber"); if (str.Length > 3) { if (str.Substring(0, 3) == "Oem")