the class should probably compile before checking it in!

This commit is contained in:
andres.delikat 2011-01-17 01:59:03 +00:00
parent c50281397d
commit 80dc4923d5
1 changed files with 1 additions and 1 deletions

View File

@ -68,7 +68,7 @@ namespace BizHawk.MultiClient
List<string> temp = new List<string>();
for (int x = 0; x < recentlist.Count; x++)
{
temp.Add = recentlist[x].Substring(0, length);
temp.Add(recentlist[x].Substring(0, length));
}
return temp;
}