mirror of
https://github.com/godotengine/godot.git
synced 2025-01-18 20:40:57 +08:00
Merge pull request #78935 from timothyqiu/zip-pack
Fix error when non-ASCII characters in resource pack path
This commit is contained in:
commit
5ee36d119f
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user