diff --git a/UI/Controls/ctrlRecentGames.cs b/UI/Controls/ctrlRecentGames.cs index d102c6c..c8f2421 100644 --- a/UI/Controls/ctrlRecentGames.cs +++ b/UI/Controls/ctrlRecentGames.cs @@ -153,7 +153,7 @@ namespace Mesen.GUI.Controls _recentGames = _recentGames.OrderBy((info) => info.Timestamp).Reverse().ToList(); - if(_recentGames.Count > 20) { + if(_recentGames.Count > 36) { _recentGames.RemoveRange(36, _recentGames.Count - 36); }