forked from mirror/openmw-tes3mp
Merge pull request #1642
This commit is contained in:
commit
0071878106
1 changed files with 4 additions and 3 deletions
|
@ -62,10 +62,11 @@ Wizard::MainWizard::MainWizard(QWidget *parent) :
|
|||
setupInstallations();
|
||||
setupPages();
|
||||
|
||||
const boost::filesystem::path& installedPath = mCfgMgr.getInstallPath();
|
||||
if (!installedPath.empty())
|
||||
const boost::filesystem::path& installationPath = mCfgMgr.getInstallPath();
|
||||
if (!installationPath.empty())
|
||||
{
|
||||
addInstallation(toQString(installedPath));
|
||||
const boost::filesystem::path& dataPath = installationPath / "Data Files";
|
||||
addInstallation(toQString(dataPath));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue