summaryrefslogtreecommitdiffstats
path: root/core/io/resource.cpp
diff options
context:
space:
mode:
authorThaddeus Crews <repiteo@outlook.com>2024-10-31 20:14:36 -0500
committerThaddeus Crews <repiteo@outlook.com>2024-10-31 20:14:36 -0500
commit163bf94d04342ad8d16086e95ea855a86d3699fc (patch)
tree6cdd9ec78a0db516c8516af7b0842b5efe426ae3 /core/io/resource.cpp
parent6ca36277abcfd587c8a61193f278899ec2bc5d32 (diff)
parent38f9769bc6d560373df961880f99aaaafaae00d9 (diff)
downloadredot-engine-163bf94d04342ad8d16086e95ea855a86d3699fc.tar.gz
Merge pull request #98091 from AThousandShips/improve_err_prints_core
[Core] Improve error messages with `vformat`
Diffstat (limited to 'core/io/resource.cpp')
-rw-r--r--core/io/resource.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/io/resource.cpp b/core/io/resource.cpp
index 0ff4fbe490..c65484b6c6 100644
--- a/core/io/resource.cpp
+++ b/core/io/resource.cpp
@@ -76,7 +76,7 @@ void Resource::set_path(const String &p_path, bool p_take_over) {
existing->path_cache = String();
ResourceCache::resources.erase(p_path);
} else {
- ERR_FAIL_MSG("Another resource is loaded from path '" + p_path + "' (possible cyclic resource inclusion).");
+ ERR_FAIL_MSG(vformat("Another resource is loaded from path '%s' (possible cyclic resource inclusion).", p_path));
}
}