RecentFiles class - don't exceed the MAX_FILES value
This commit is contained in:
parent
2d5efc42cd
commit
4bd164b6b2
|
@ -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");
|
||||
}
|
||||
}
|
||||
}
|
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue