... oops! Fixes startup prompts.

git-svn-id: http://pcsx2.googlecode.com/svn/trunk@2674 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
Jake.Stine 2010-03-05 23:07:18 +00:00
parent 3e709bade8
commit 123545eeb1
1 changed files with 8 additions and 1 deletions

View File

@ -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 )
{