diff options
| author | robojumper <robojumper@gmail.com> | 2025-05-25 21:56:33 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-05-25 21:56:33 +0200 |
| commit | 7616b37976dac6248c5aac07c3ec882160114e70 (patch) | |
| tree | 10676fb1a968358afea5ec916da83284aa776308 /src/nw4r/ut/ut_binaryFileFormat.cpp | |
| parent | ae4573a236e59f966ea1197bebd8976ccb09e596 (diff) | |
| parent | f7884242c7e31b516d56ba4d9f4ac5ce2155f13d (diff) | |
Merge pull request #178 from robojumper/nw4r_snd
Initial import of nw4r::snd source files
Diffstat (limited to 'src/nw4r/ut/ut_binaryFileFormat.cpp')
| -rw-r--r-- | src/nw4r/ut/ut_binaryFileFormat.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nw4r/ut/ut_binaryFileFormat.cpp b/src/nw4r/ut/ut_binaryFileFormat.cpp index 30e6a89d..9b5f9181 100644 --- a/src/nw4r/ut/ut_binaryFileFormat.cpp +++ b/src/nw4r/ut/ut_binaryFileFormat.cpp @@ -5,7 +5,7 @@ namespace ut { /* 8042a9e0 */ bool IsValidBinaryFile(const BinaryFileHeader *header, u32 magic, u16 version, u16 numBlocks) { - if (header->magic != magic) { + if (header->signature != magic) { return false; } if (header->byteOrder != 0xFEFF) { |
