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

Merge pull request #53121 from timothyqiu/resource-id-utf8

Rémi Verschelde 4 жил өмнө
parent
commit
4633f8c3ba

+ 1 - 2
core/io/resource_uid.cpp

@@ -126,8 +126,7 @@ String ResourceUID::get_id_path(ID p_id) const {
 	MutexLock l(mutex);
 	ERR_FAIL_COND_V(!unique_ids.has(p_id), String());
 	const CharString &cs = unique_ids[p_id].cs;
-	String s(cs.ptr());
-	return s;
+	return String::utf8(cs.ptr());
 }
 void ResourceUID::remove_id(ID p_id) {
 	MutexLock l(mutex);