From 159f1d9da202e8ce7090c150971472715695e70e Mon Sep 17 00:00:00 2001 From: adelikat Date: Sun, 8 Mar 2015 02:50:46 +0000 Subject: [PATCH] don't crash in Bk2MnemonicConstants on a "P" key from a keyboard --- BizHawk.Client.Common/movie/bk2/Bk2MnemonicConstants.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BizHawk.Client.Common/movie/bk2/Bk2MnemonicConstants.cs b/BizHawk.Client.Common/movie/bk2/Bk2MnemonicConstants.cs index 3ff1fff3ae..695463199c 100644 --- a/BizHawk.Client.Common/movie/bk2/Bk2MnemonicConstants.cs +++ b/BizHawk.Client.Common/movie/bk2/Bk2MnemonicConstants.cs @@ -9,7 +9,7 @@ namespace BizHawk.Client.Common get { var key = button.Replace("Key ", ""); - if (key.StartsWith("P") && key[1] >= '0' && key[1] <= '9') + if (key.StartsWith("P") && key.Length > 1 && key[1] >= '0' && key[1] <= '9') key = key.Substring(3); if (SystemOverrides.ContainsKey(Global.Emulator.SystemId) && SystemOverrides[Global.Emulator.SystemId].ContainsKey(key))