summaryrefslogtreecommitdiffstats
path: root/core/io/resource_loader.cpp
diff options
context:
space:
mode:
authorMatthew Edwards <matthew1006@hotmail.co.uk>2024-01-29 17:27:57 +0000
committerMatthew Edwards <matthew1006@hotmail.co.uk>2024-01-29 17:27:57 +0000
commit7565d1f3abb592a5978613701a4b9b744df748da (patch)
treebe1eb315b76c5c562a299759325ead7a40ce5809 /core/io/resource_loader.cpp
parentfa48a51183567934984b381ad8ec281cb24d66ba (diff)
downloadredot-engine-7565d1f3abb592a5978613701a4b9b744df748da.tar.gz
Push p_original_path into load_paths_stack and sub_tasks instead of p_path.
Diffstat (limited to 'core/io/resource_loader.cpp')
-rw-r--r--core/io/resource_loader.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/io/resource_loader.cpp b/core/io/resource_loader.cpp
index ba11d84bce..5b625f97a0 100644
--- a/core/io/resource_loader.cpp
+++ b/core/io/resource_loader.cpp
@@ -244,11 +244,11 @@ Ref<Resource> ResourceLoader::_load(const String &p_path, const String &p_origin
thread_load_mutex.lock();
HashMap<String, ThreadLoadTask>::Iterator E = thread_load_tasks.find(load_paths_stack->get(load_paths_stack->size() - 1));
if (E) {
- E->value.sub_tasks.insert(p_path);
+ E->value.sub_tasks.insert(p_original_path);
}
thread_load_mutex.unlock();
}
- load_paths_stack->push_back(p_path);
+ load_paths_stack->push_back(p_original_path);
// Try all loaders and pick the first match for the type hint
bool found = false;