You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2026-01-07 19:53:17 +00:00
Merge pull request #68131 from benbusby/hotfix/zippacker_null_check
Remove `zf != NULL` check from `ZIPPacker::start_file`
This commit is contained in:
@@ -50,7 +50,6 @@ Error ZIPPacker::close() {
|
||||
}
|
||||
|
||||
Error ZIPPacker::start_file(String p_path) {
|
||||
ERR_FAIL_COND_V_MSG(zf != NULL, FAILED, "ZIPPacker is already in use.");
|
||||
ERR_FAIL_COND_V_MSG(fa.is_null(), FAILED, "ZIPPacker must be opened before use.");
|
||||
|
||||
zip_fileinfo zipfi;
|
||||
|
||||
Reference in New Issue
Block a user