mirror of
https://github.com/OpenMW/openmw.git
synced 2025-03-29 23:36:41 +00:00
Modified write function to always use user location for openmw.cfg
This commit is contained in:
parent
ceb8190121
commit
ccfd011df6
1 changed files with 3 additions and 2 deletions
|
@ -313,8 +313,9 @@ void MainDialog::writeConfig()
|
|||
QStringList dataFiles = mDataFilesPage->selectedMasters();
|
||||
dataFiles.append(mDataFilesPage->checkedPlugins());
|
||||
|
||||
// Open the config as a QFile
|
||||
QFile file(mGameConfig->fileName());
|
||||
// Open the config as a QFile
|
||||
QFile file(QString::fromStdString(Files::getPath(Files::Path_ConfigUser,
|
||||
"openmw", "openmw.cfg")));
|
||||
|
||||
if (!file.open(QIODevice::ReadOnly | QIODevice::Text)) {
|
||||
// File cannot be opened or created
|
||||
|
|
Loading…
Reference in a new issue