From 981888799c0452daf7335a906166b4931450c3d6 Mon Sep 17 00:00:00 2001 From: GriffinR Date: Sun, 11 Sep 2022 00:11:58 -0400 Subject: [PATCH] Fix prefab error log typo --- src/ui/prefab.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ui/prefab.cpp b/src/ui/prefab.cpp index ea3e01a7..d2da8e0e 100644 --- a/src/ui/prefab.cpp +++ b/src/ui/prefab.cpp @@ -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; } }