PCSX2: Add configurable Cheats folder to Components Selectors.

Add GUI option to Plugins Components Selectors to change the default
"Cheats" folder location. Similar to savestates/logs/..etc.
This commit is contained in:
lightningterror 2018-01-23 07:07:18 +01:00 committed by Jonathan Li
parent eeca9f61bf
commit ab44ebd7e0
1 changed files with 8 additions and 0 deletions

View File

@ -33,6 +33,14 @@ Panels::BasePathsPanel::BasePathsPanel( wxWindow* parent )
Panels::StandardPathsPanel::StandardPathsPanel( wxWindow* parent ) Panels::StandardPathsPanel::StandardPathsPanel( wxWindow* parent )
: BasePathsPanel( parent ) : BasePathsPanel( parent )
{ {
*this += BetweenFolderSpace;
*this += (new DirPickerPanel( this, FolderId_Cheats,
_("Cheats:"),
_("Select folder for Cheats") ))->
SetToolTip( pxEt( L"This folder is where PCSX2 loads cheats from."
)
) | SubGroup();
*this += BetweenFolderSpace; *this += BetweenFolderSpace;
*this += (new DirPickerPanel( this, FolderId_Savestates, *this += (new DirPickerPanel( this, FolderId_Savestates,
_("Savestates:"), _("Savestates:"),