make bizstring.split() 1-based

This commit is contained in:
adelikat 2015-09-09 19:57:14 -04:00
parent 0011554d77
commit 3ba965321a
1 changed files with 1 additions and 1 deletions

View File

@ -199,7 +199,7 @@ namespace BizHawk.Client.Common
for (int i = 0; i < splitStr.Length; i++)
{
table[i] = splitStr[i];
table[i + 1] = splitStr[i];
}
}