mirror of
https://github.com/OpenMW/openmw.git
synced 2025-10-15 18:16:33 +00:00
Fix #7294 (launcher creates new contentlist everytime)
This commit is contained in:
parent
76cba95a44
commit
0769e3daf0
1 changed files with 1 additions and 1 deletions
|
@ -144,7 +144,7 @@ bool Config::GameSettings::readFile(QTextStream& stream, QMultiMap<QString, QStr
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if (ignoreContent && key == QLatin1String("content"))
|
if (ignoreContent && (key == QLatin1String("content") || key == QLatin1String("data")))
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
QStringList values = cache.values(key);
|
QStringList values = cache.values(key);
|
||||||
|
|
Loading…
Reference in a new issue