mirror of https://github.com/PCSX2/pcsx2.git
... oops! Fixes startup prompts.
git-svn-id: http://pcsx2.googlecode.com/svn/trunk@2674 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
3e709bade8
commit
123545eeb1
|
@ -122,7 +122,14 @@ void Pcsx2App::ReadUserModeSettings()
|
||||||
}
|
}
|
||||||
|
|
||||||
bool hasGroup = conf_usermode->HasGroup( groupname );
|
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 )
|
if( forceWiz )
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue