Fix build break with new getConfigBool() usage
This commit is contained in:
parent
07f1dd7a62
commit
9c7d2e49b2
1 changed files with 1 additions and 1 deletions
|
@ -505,7 +505,7 @@ void ProjectConfig::parseConfigKeyValue(QString key, QString value) {
|
||||||
} else if (key == "prefabs_filepath") {
|
} else if (key == "prefabs_filepath") {
|
||||||
this->prefabFilepath = value;
|
this->prefabFilepath = value;
|
||||||
} else if (key == "prefabs_import_prompted") {
|
} else if (key == "prefabs_import_prompted") {
|
||||||
setConfigBool(key, &this->prefabImportPrompted, value);
|
this->prefabImportPrompted = getConfigBool(key, value);
|
||||||
} else {
|
} else {
|
||||||
logWarn(QString("Invalid config key found in config file %1: '%2'").arg(this->getConfigFilepath()).arg(key));
|
logWarn(QString("Invalid config key found in config file %1: '%2'").arg(this->getConfigFilepath()).arg(key));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue