Explorar o código

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

Rémi Verschelde %!s(int64=4) %!d(string=hai) anos
pai
achega
4633f8c3ba
Modificáronse 1 ficheiros con 1 adicións e 2 borrados
  1. 1 2
      core/io/resource_uid.cpp

+ 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);