This reverts commit b0abed00e5.
This commit is contained in:
scrawl 2017-06-20 00:13:32 +02:00
parent 3356fb81ce
commit 41fb17f39b
2 changed files with 1 additions and 8 deletions

View file

@ -172,9 +172,6 @@ Launcher::FirstRunDialogResult Launcher::MainDialog::showFirstRunDialog()
}
}
if(!setupGameData())
return FirstRunDialogResultFailure;
return setup() ? FirstRunDialogResultContinue : FirstRunDialogResultFailure;
}
@ -347,10 +344,6 @@ bool Launcher::MainDialog::setupGameSettings()
file.close();
}
return true;
}
bool Launcher::MainDialog::setupGameData() {
QStringList dataDirs;
// Check if the paths actually contain data files
@ -386,6 +379,7 @@ bool Launcher::MainDialog::setupGameData() {
}
}
}
return true;
}

View file

@ -72,7 +72,6 @@ namespace Launcher
bool setupLauncherSettings();
bool setupGameSettings();
bool setupGraphicsSettings();
bool setupGameData();
void setVersionLabel();