mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-04 02:41:19 +00:00
Correcting https://bugs.openmw.org/issues/3906
This commit is contained in:
parent
dd882b69c6
commit
b0abed00e5
@ -172,6 +172,9 @@ Launcher::FirstRunDialogResult Launcher::MainDialog::showFirstRunDialog()
|
||||
}
|
||||
}
|
||||
|
||||
if(!setupGameData())
|
||||
return FirstRunDialogResultFailure;
|
||||
|
||||
return setup() ? FirstRunDialogResultContinue : FirstRunDialogResultFailure;
|
||||
}
|
||||
|
||||
@ -344,6 +347,10 @@ bool Launcher::MainDialog::setupGameSettings()
|
||||
file.close();
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
bool Launcher::MainDialog::setupGameData() {
|
||||
QStringList dataDirs;
|
||||
|
||||
// Check if the paths actually contain data files
|
||||
@ -379,7 +386,6 @@ bool Launcher::MainDialog::setupGameSettings()
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
|
@ -72,6 +72,7 @@ namespace Launcher
|
||||
bool setupLauncherSettings();
|
||||
bool setupGameSettings();
|
||||
bool setupGraphicsSettings();
|
||||
bool setupGameData();
|
||||
|
||||
void setVersionLabel();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user