From b75868cc7cb317484c38d2c5c309ab3ddbb1cdbd Mon Sep 17 00:00:00 2001 From: Akash Date: Tue, 9 May 2017 16:22:03 +0530 Subject: [PATCH] PCSX2-WX: Increment max ISO count in recent ISO list The default 12 is rather low and won't suffice for most cases, updating it to 20 to give some extra space for additional ISOs. Incrementing it to an even higher value might not be so good as it consumes lots of vertical space, not a nice idea for people with smaller screens. --- pcsx2/gui/AppConfig.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pcsx2/gui/AppConfig.cpp b/pcsx2/gui/AppConfig.cpp index c25018b1ee..1a1a4e88ee 100644 --- a/pcsx2/gui/AppConfig.cpp +++ b/pcsx2/gui/AppConfig.cpp @@ -535,7 +535,7 @@ AppConfig::AppConfig() { LanguageId = wxLANGUAGE_DEFAULT; LanguageCode = L"default"; - RecentIsoCount = 12; + RecentIsoCount = 20; Listbook_ImageSize = 32; Toolbar_ImageSize = 24; Toolbar_ShowLabels = true;