1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-16 14:00:40 +00:00

Fix error when non-ASCII characters in resource pack path

(cherry picked from commit df5c68af99)
This commit is contained in:
Haoyu Qiu
2023-07-02 15:04:00 +08:00
committed by Yuri Sizov
parent 371b31c85f
commit a8bfdd8bea

View File

@@ -47,7 +47,7 @@ static void *godot_open(voidpf opaque, const char *p_fname, int mode) {
return nullptr;
}
Ref<FileAccess> f = FileAccess::open(p_fname, FileAccess::READ);
Ref<FileAccess> f = FileAccess::open(String::utf8(p_fname), FileAccess::READ);
ERR_FAIL_COND_V(f.is_null(), nullptr);
ZipData *zd = memnew(ZipData);