mirror of
https://github.com/OpenMW/openmw.git
synced 2025-02-06 11:15:33 +00:00
Correcting https://bugs.openmw.org/issues/3906.
This commit is contained in:
parent
d32ea7f284
commit
c920d083e4
2 changed files with 10 additions and 1 deletions
|
@ -172,7 +172,10 @@ Launcher::FirstRunDialogResult Launcher::MainDialog::showFirstRunDialog()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return setup() ? FirstRunDialogResultContinue : FirstRunDialogResultFailure;
|
if (!setup() || !setupGameData()) {
|
||||||
|
return FirstRunDialogResultFailure;
|
||||||
|
}
|
||||||
|
return FirstRunDialogResultContinue;
|
||||||
}
|
}
|
||||||
|
|
||||||
void Launcher::MainDialog::setVersionLabel()
|
void Launcher::MainDialog::setVersionLabel()
|
||||||
|
@ -344,6 +347,11 @@ bool Launcher::MainDialog::setupGameSettings()
|
||||||
file.close();
|
file.close();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool Launcher::MainDialog::setupGameData()
|
||||||
|
{
|
||||||
QStringList dataDirs;
|
QStringList dataDirs;
|
||||||
|
|
||||||
// Check if the paths actually contain data files
|
// Check if the paths actually contain data files
|
||||||
|
|
|
@ -72,6 +72,7 @@ namespace Launcher
|
||||||
bool setupLauncherSettings();
|
bool setupLauncherSettings();
|
||||||
bool setupGameSettings();
|
bool setupGameSettings();
|
||||||
bool setupGraphicsSettings();
|
bool setupGraphicsSettings();
|
||||||
|
bool setupGameData();
|
||||||
|
|
||||||
void setVersionLabel();
|
void setVersionLabel();
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue