diff --git a/pcsx2/gui/AppInit.cpp b/pcsx2/gui/AppInit.cpp index 585c710345..87974d52a8 100644 --- a/pcsx2/gui/AppInit.cpp +++ b/pcsx2/gui/AppInit.cpp @@ -122,7 +122,14 @@ void Pcsx2App::ReadUserModeSettings() } bool hasGroup = conf_usermode->HasGroup( groupname ); - bool forceWiz = m_ForceWizard || !hasGroup || !conf_usermode->HasEntry( L"DocumentsFolderMode" ); + bool forceWiz = m_ForceWizard || !hasGroup; + + if( forceWiz ) + { + conf_usermode->SetPath( groupname ); + forceWiz = !conf_usermode->HasEntry( L"DocumentsFolderMode" ); + conf_usermode->SetPath( L".." ); + } if( forceWiz ) {