From 80dc4923d53695cee535d8c6c57adec016b66242 Mon Sep 17 00:00:00 2001 From: "andres.delikat" Date: Mon, 17 Jan 2011 01:59:03 +0000 Subject: [PATCH] the class should probably compile before checking it in! --- BizHawk.MultiClient/RecentFiles.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BizHawk.MultiClient/RecentFiles.cs b/BizHawk.MultiClient/RecentFiles.cs index 0064973a73..a2c1c65d7b 100644 --- a/BizHawk.MultiClient/RecentFiles.cs +++ b/BizHawk.MultiClient/RecentFiles.cs @@ -68,7 +68,7 @@ namespace BizHawk.MultiClient List temp = new List(); for (int x = 0; x < recentlist.Count; x++) { - temp.Add = recentlist[x].Substring(0, length); + temp.Add(recentlist[x].Substring(0, length)); } return temp; }