1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-16 16:10:58 +00:00

data-local is already unquoted when it's read

This commit is contained in:
AnyOldName3 2024-02-27 02:14:31 +00:00
parent dbdecfe94b
commit 7d28788aee

View File

@ -47,11 +47,6 @@ void Config::GameSettings::validatePaths()
// Do the same for data-local
QString local = mSettings.value(QString("data-local"));
if (local.length() && local.at(0) == QChar('\"'))
{
local.remove(0, 1);
local.chop(1);
}
if (local.isEmpty())
return;