2
0
Эх сурвалжийг харах

Fix PackedData::has_path() using wrong path format.

Pāvels Nadtočajevs 11 сар өмнө
parent
commit
93a21c3efc

+ 1 - 1
core/io/file_access_pack.h

@@ -205,7 +205,7 @@ Ref<FileAccess> PackedData::try_open_path(const String &p_path) {
 }
 
 bool PackedData::has_path(const String &p_path) {
-	return files.has(PathMD5(p_path.simplify_path().md5_buffer()));
+	return files.has(PathMD5(p_path.simplify_path().trim_prefix("res://").md5_buffer()));
 }
 
 bool PackedData::has_directory(const String &p_path) {