fix an apple II controller crash problem introduced in r9264
This commit is contained in:
parent
9e296df8c8
commit
3bf2d8f00b
|
@ -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]);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue