summaryrefslogtreecommitdiff
path: root/core/io
diff options
context:
space:
mode:
authorRindbee <idleman@yeah.net>2022-07-30 17:08:40 +0800
committerRindbee <idleman@yeah.net>2022-07-30 17:11:18 +0800
commit279e5e90f29a3faa03209df83c82e5c2071ed119 (patch)
treec736c3653878689bf07c8ab49216b5e9be7c4f0b /core/io
parent9094262a6b9f3d7fc5aa8a8dd582ec1058bfce71 (diff)
Fix using wrong variable when checking in `ResourceSaver::save`
Diffstat (limited to 'core/io')
-rw-r--r--core/io/resource_saver.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/io/resource_saver.cpp b/core/io/resource_saver.cpp
index 41e2f0e116..274316f058 100644
--- a/core/io/resource_saver.cpp
+++ b/core/io/resource_saver.cpp
@@ -80,7 +80,7 @@ Error ResourceSaver::save(const Ref<Resource> &p_resource, const String &p_path,
if (path.is_empty()) {
path = p_resource->get_path();
}
- ERR_FAIL_COND_V_MSG(p_path.is_empty(), ERR_INVALID_PARAMETER, "Can't save resource to empty path. Provide non-empty path or a Resource with non-empty resource_path.");
+ ERR_FAIL_COND_V_MSG(path.is_empty(), ERR_INVALID_PARAMETER, "Can't save resource to empty path. Provide non-empty path or a Resource with non-empty resource_path.");
String extension = path.get_extension();
Error err = ERR_FILE_UNRECOGNIZED;