RecentFiles class - don't exceed the MAX_FILES value

This commit is contained in:
andres.delikat 2011-01-17 02:40:08 +00:00
parent 2d5efc42cd
commit 4bd164b6b2
2 changed files with 3 additions and 4 deletions

View File

@ -609,13 +609,10 @@ namespace BizHawk.MultiClient
{
for (int x = 0; x < RecentRoms.Length(); x++)
{
recentROMToolStripMenuItem.DropDownItems.Add(RecentRoms.GetRecentFileByPosition(x));
recentROMToolStripMenuItem.DropDownItems.Add(RecentRoms.GetRecentFileByPosition(x)); //TODO: truncate this to a nice size
}
}
recentROMToolStripMenuItem.DropDownItems.Add("Clear");
//MenuItem recent1 = new MenuItem("test");
//recentROMToolStripMenuItem.DropDownItems.Add("testme");
}
}
}

View File

@ -44,6 +44,8 @@ namespace BizHawk.MultiClient
}
}
recentlist.Add(newFile);
if (recentlist.Count > MAX_RECENT_FILES)
recentlist.Remove(recentlist[0]);
}
public bool Remove(string newFile)