diff options
| author | Juan Linietsky | 2014-02-13 18:03:28 -0300 |
|---|---|---|
| committer | Juan Linietsky | 2014-02-13 18:03:28 -0300 |
| commit | 58cda02a389759d18176216c06f375d364cefef1 (patch) | |
| tree | 4102902585d12ea6807ceaee1370136d29b601e1 /core/io/file_access_zip.cpp | |
| parent | 1adc330b68b1f6ca18aac05daf88c7d4d757fd0a (diff) | |
| download | godot-58cda02a389759d18176216c06f375d364cefef1.tar.gz godot-58cda02a389759d18176216c06f375d364cefef1.tar.zst godot-58cda02a389759d18176216c06f375d364cefef1.zip | |
Diffstat (limited to 'core/io/file_access_zip.cpp')
| -rw-r--r-- | core/io/file_access_zip.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/core/io/file_access_zip.cpp b/core/io/file_access_zip.cpp index 72e929619..55c0dedad 100644 --- a/core/io/file_access_zip.cpp +++ b/core/io/file_access_zip.cpp @@ -197,7 +197,8 @@ bool ZipArchive::try_open_pack(const String& p_name) { String fname = String("res://") + filename_inzip; files[fname] = f; - PackedData::get_singleton()->add_path(p_name, fname, 0, 0, this); + uint8_t md5[16]={0,0,0,0,0,0,0,0 , 0,0,0,0,0,0,0,0}; + PackedData::get_singleton()->add_path(p_name, fname, 0, 0, md5, this); if ((i+1)<gi.number_entry) { unzGoToNextFile(zfile); |
