Fix build break with new getConfigBool() usage

This commit is contained in:
Marcus Huderle 2022-09-24 15:47:21 -05:00
parent 07f1dd7a62
commit 9c7d2e49b2

View file

@ -505,7 +505,7 @@ void ProjectConfig::parseConfigKeyValue(QString key, QString value) {
} else if (key == "prefabs_filepath") {
this->prefabFilepath = value;
} else if (key == "prefabs_import_prompted") {
setConfigBool(key, &this->prefabImportPrompted, value);
this->prefabImportPrompted = getConfigBool(key, value);
} else {
logWarn(QString("Invalid config key found in config file %1: '%2'").arg(this->getConfigFilepath()).arg(key));
}