Fix an indicator for ZIP64

This commit is contained in:
Matt Nadareski
2024-04-27 23:50:03 -04:00
parent b30b91fd91
commit 24ae354bc2

View File

@@ -52,7 +52,7 @@ namespace SabreTools.Serialization.Deserializers
// Process ZIP64 if we have the minimal set of indicators
if (eocdr.CentralDirectorySize == 0xFFFFFFFF
&& eocdr.CentralDirectoryOffset == 0xFFFFFFFF)
|| eocdr.CentralDirectoryOffset == 0xFFFFFFFF)
{
// Set the ZIP64 flag
zip64 = true;