mirror of
https://github.com/huderlem/porymap.git
synced 2026-06-30 19:49:46 -05:00
Fix build break with new getConfigBool() usage
This commit is contained in:
parent
07f1dd7a62
commit
9c7d2e49b2
|
|
@ -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));
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user