diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2020-09-03 07:33:19 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-03 07:33:19 +0200 |
commit | 4a5138bb99f5a063035c1d34de26af050bef5dc3 (patch) | |
tree | 6ed4d6eecf7ed43ff107873619260788ebcc5e50 /core/io/file_access_zip.h | |
parent | 71833520da2bfa39201bc9734432de47a18aaa14 (diff) | |
parent | c524d50444f98039faab75f7d701ca54a82e5848 (diff) |
Merge pull request #40400 from Arivval/load-resourcepack-with-offset
Added PCK file loading with offset feature
Diffstat (limited to 'core/io/file_access_zip.h')
-rw-r--r-- | core/io/file_access_zip.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/io/file_access_zip.h b/core/io/file_access_zip.h index 776e830f36..ec51a9e4fb 100644 --- a/core/io/file_access_zip.h +++ b/core/io/file_access_zip.h @@ -69,7 +69,7 @@ public: bool file_exists(String p_name) const; - virtual bool try_open_pack(const String &p_path, bool p_replace_files); + virtual bool try_open_pack(const String &p_path, bool p_replace_files, size_t p_offset); FileAccess *get_file(const String &p_path, PackedData::PackedFile *p_file); static ZipArchive *get_singleton(); |