feat: modules moved and engine moved to submodule
This commit is contained in:
parent
dfb5e645cd
commit
c33d2130cc
5136 changed files with 225275 additions and 64485 deletions
|
|
@ -91,9 +91,9 @@ Error PCKPacker::pck_start(const String &p_pck_path, int p_alignment, const Stri
|
|||
|
||||
file->store_32(PACK_HEADER_MAGIC);
|
||||
file->store_32(PACK_FORMAT_VERSION);
|
||||
file->store_32(VERSION_MAJOR);
|
||||
file->store_32(VERSION_MINOR);
|
||||
file->store_32(VERSION_PATCH);
|
||||
file->store_32(GODOT_VERSION_MAJOR);
|
||||
file->store_32(GODOT_VERSION_MINOR);
|
||||
file->store_32(GODOT_VERSION_PATCH);
|
||||
|
||||
uint32_t pack_flags = 0;
|
||||
if (enc_dir) {
|
||||
|
|
@ -118,8 +118,7 @@ Error PCKPacker::add_file_removal(const String &p_target_path) {
|
|||
pf.size = 0;
|
||||
pf.removal = true;
|
||||
|
||||
pf.md5.resize(16);
|
||||
pf.md5.fill(0);
|
||||
pf.md5.resize_zeroed(16);
|
||||
|
||||
files.push_back(pf);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue