Skip to content

Commit

Permalink
Fix tiger archive for big endian
Browse files Browse the repository at this point in the history
  • Loading branch information
TheIndra55 committed Aug 16, 2023
1 parent 5e1b8c8 commit f397264
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Yura/Archive/TigerArchive.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public override void Open()

var magic = reader.ReadUInt32();

if (magic != 0x53464154)
if (magic != 0x53464154 && magic != 0x54414653)
{
throw new Exception("File is not a tiger archive file");
}
Expand Down

0 comments on commit f397264

Please sign in to comment.