fix an apple II controller crash problem introduced in r9264

This commit is contained in:
goyuken 2015-04-04 00:20:28 +00:00
parent 9e296df8c8
commit 3bf2d8f00b
1 changed files with 1 additions and 1 deletions

View File

@ -122,7 +122,7 @@ namespace BizHawk.Emulation.Common
for (int i = 0; i < list.Count; i++)
{
int player = 0;
if (list[i].StartsWith("P") && char.IsNumber(list[i][1]))
if (list[i].Length > 3 && list[i].StartsWith("P") && char.IsNumber(list[i][1]))
player = int.Parse(list[i][1].ToString());
ret[player].Add(list[i]);
}