Skip to content

Commit

Permalink
patterns/iso: Fix incorrect condition (WerWolv#344)
Browse files Browse the repository at this point in the history
  • Loading branch information
xZise authored Jan 23, 2025
1 parent aef3d34 commit e779b88
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions patterns/iso.hexpat
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ struct VolumeDescriptor {
char setId[0x80];
char publisherId[0x80];
char preparerId[0x80];
} else if (type == VolumeDescriptorTypes::SupplementaryVolume && GetSupplementaryEncoding()) {
char applicationId[0x80];
char copyrightFileId[0x25];
char abstractFileId[0x25];
char bibliographicFileId[0x25];
Expand All @@ -142,7 +142,7 @@ struct VolumeDescriptor {
StrDateFormat expirationTime[[format("FormatStrDate")]];
StrDateFormat effectiveTime[[format("FormatStrDate")]];
u8 fileStructVersion;
} else if (type == VolumeDescriptorTypes::SupplementaryVolume) {
} else if (type == VolumeDescriptorTypes::SupplementaryVolume && GetSupplementaryEncoding()) {
u8 flags;
be char16 systemId[0x10];
be char16 volumeId[0x10];
Expand Down

0 comments on commit e779b88

Please sign in to comment.