mirror of
https://github.com/OpenMW/openmw.git
synced 2025-03-01 12:09:50 +00:00
Avoid Qt "opening user openmw.cfg twice" warning
This commit is contained in:
parent
2e05e0e829
commit
9788a776b9
1 changed files with 2 additions and 1 deletions
|
@ -329,6 +329,7 @@ bool Launcher::MainDialog::setupGameSettings()
|
||||||
stream.setCodec(QTextCodec::codecForName("UTF-8"));
|
stream.setCodec(QTextCodec::codecForName("UTF-8"));
|
||||||
|
|
||||||
mGameSettings.readUserFile(stream);
|
mGameSettings.readUserFile(stream);
|
||||||
|
file.close();
|
||||||
}
|
}
|
||||||
|
|
||||||
// Now the rest - priority: user > local > global
|
// Now the rest - priority: user > local > global
|
||||||
|
@ -353,9 +354,9 @@ bool Launcher::MainDialog::setupGameSettings()
|
||||||
stream.setCodec(QTextCodec::codecForName("UTF-8"));
|
stream.setCodec(QTextCodec::codecForName("UTF-8"));
|
||||||
|
|
||||||
mGameSettings.readFile(stream);
|
mGameSettings.readFile(stream);
|
||||||
}
|
|
||||||
file.close();
|
file.close();
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue