[3.x] PCKPacker Fix error spam
This commit is contained in:
parent
28afd32d29
commit
b3812750da
1 changed files with 5 additions and 0 deletions
|
@ -86,6 +86,8 @@ Error PCKPacker::pck_start(const String &p_file, int p_alignment) {
|
||||||
};
|
};
|
||||||
|
|
||||||
Error PCKPacker::add_file(const String &p_file, const String &p_src) {
|
Error PCKPacker::add_file(const String &p_file, const String &p_src) {
|
||||||
|
ERR_FAIL_COND_V_MSG(!file, ERR_INVALID_PARAMETER, "File must be opened before use.");
|
||||||
|
|
||||||
FileAccess *f = FileAccess::open(p_src, FileAccess::READ);
|
FileAccess *f = FileAccess::open(p_src, FileAccess::READ);
|
||||||
if (!f) {
|
if (!f) {
|
||||||
return ERR_FILE_CANT_OPEN;
|
return ERR_FILE_CANT_OPEN;
|
||||||
|
@ -165,6 +167,9 @@ Error PCKPacker::flush(bool p_verbose) {
|
||||||
}
|
}
|
||||||
|
|
||||||
file->close();
|
file->close();
|
||||||
|
memdelete(file);
|
||||||
|
file = nullptr;
|
||||||
|
|
||||||
memdelete_arr(buf);
|
memdelete_arr(buf);
|
||||||
|
|
||||||
return OK;
|
return OK;
|
||||||
|
|
Loading…
Reference in a new issue