mirror of
https://github.com/TES3MP/TES3MP.git
synced 2025-09-26 22:45:15 -04:00
launcher: Properly quit if settings write fails.
This commit is contained in:
parent
98e5cb6d7b
commit
fd25616cab
@ -608,8 +608,10 @@ void MainDialog::closeEvent(QCloseEvent *event)
|
|||||||
|
|
||||||
void MainDialog::play()
|
void MainDialog::play()
|
||||||
{
|
{
|
||||||
if (!writeSettings())
|
if (!writeSettings()) {
|
||||||
qApp->quit();
|
qApp->quit();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
// Launch the game detached
|
// Launch the game detached
|
||||||
startProgram(QString("openmw"), true);
|
startProgram(QString("openmw"), true);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user