diff options
author | Marc Gilleron <marc.gilleron@gmail.com> | 2022-09-19 15:45:45 +0100 |
---|---|---|
committer | Marc Gilleron <marc.gilleron@gmail.com> | 2022-09-21 21:18:54 +0100 |
commit | 474cee7dafa4df94294de3e1c45e049defd7cfc5 (patch) | |
tree | 45817134039d7d24b4a596b578e5b024f9624540 /core/io | |
parent | 908795301b9e4fcf24b115329a48d7d295c13a1a (diff) |
Rename and expose `RefCounted::get_reference_count()`
Diffstat (limited to 'core/io')
-rw-r--r-- | core/io/resource.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/io/resource.cpp b/core/io/resource.cpp index 553698f8a6..ab30fb1ca3 100644 --- a/core/io/resource.cpp +++ b/core/io/resource.cpp @@ -489,7 +489,7 @@ bool ResourceCache::has(const String &p_path) { Resource **res = resources.getptr(p_path); - if (res && (*res)->reference_get_count() == 0) { + if (res && (*res)->get_reference_count() == 0) { // This resource is in the process of being deleted, ignore its existence. (*res)->path_cache = String(); resources.erase(p_path); |