1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-10 13:00:37 +00:00

[iOS] Fix getting Unicode executable path, fix "!configured" and "!classes.has(ti.inherits)" error spam on start.

This commit is contained in:
bruvzg
2022-11-16 18:55:37 +02:00
parent 2846ea1ffa
commit 6bf9594cfb
3 changed files with 10 additions and 10 deletions

View File

@@ -565,7 +565,7 @@ String OS_Unix::get_executable_path() const {
WARN_PRINT("MAXPATHLEN is too small");
}
String path(resolved_path);
String path = String::utf8(resolved_path);
delete[] resolved_path;
return path;