Fix prefab error log typo

This commit is contained in:
GriffinR 2022-09-11 00:11:58 -04:00
parent ce4d8bfc54
commit 981888799c

View file

@ -29,7 +29,7 @@ void Prefab::loadPrefabs() {
if (!QFile::exists(filepath) || !parser.tryParseJsonFile(&prefabDoc, filepath)) {
QString relativePath = QDir::cleanPath(projectConfig.getProjectDir() + QDir::separator() + filepath);
if (!parser.tryParseJsonFile(&prefabDoc, relativePath)) {
logError(QString("Failed to prefab data from %1").arg(filepath));
logError(QString("Failed to read prefab data from %1").arg(filepath));
return;
}
}