1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-03-31 11:06:42 +00:00
This commit is contained in:
AnyOldName3 2024-02-29 00:01:14 +00:00
parent 9e1334cc09
commit b8cb757ca4

View file

@ -103,7 +103,7 @@ bool Config::GameSettings::readFile(QTextStream& stream, QMultiMap<QString, QStr
if (line.isEmpty() || line.startsWith("#"))
continue;
QRegularExpressionMatch match = keyRe.match(line);
QRegularExpressionMatch match = replaceRe.match(line);
if (match.hasMatch())
{
QString key = match.captured(1).trimmed();