summaryrefslogtreecommitdiff
path: root/src/nw4r/ut/ut_binaryFileFormat.cpp
diff options
context:
space:
mode:
authorelijah-thomas774 <elijahthomas774@gmail.com>2024-05-12 16:04:01 -0400
committerelijah-thomas774 <elijahthomas774@gmail.com>2024-05-12 16:04:01 -0400
commit62e0778390f838cdb92f16b3582e2d76299ae8a5 (patch)
tree56f654268089544b7d3625b4cf60fc9fb087be97 /src/nw4r/ut/ut_binaryFileFormat.cpp
parent94ec354dde88a3e5e9f3f5b23f3506f83f0beb80 (diff)
fixed up typedef for u32 and s32 from mistake long ago
Diffstat (limited to 'src/nw4r/ut/ut_binaryFileFormat.cpp')
-rw-r--r--src/nw4r/ut/ut_binaryFileFormat.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nw4r/ut/ut_binaryFileFormat.cpp b/src/nw4r/ut/ut_binaryFileFormat.cpp
index 1b62b51c..cde48e24 100644
--- a/src/nw4r/ut/ut_binaryFileFormat.cpp
+++ b/src/nw4r/ut/ut_binaryFileFormat.cpp
@@ -4,7 +4,7 @@ namespace nw4r {
namespace ut {
/* 8042a9e0 */
-bool IsValidBinaryFile(const BinaryFileHeader *header, unsigned long magic, u16 version, u16 numBlocks) {
+bool IsValidBinaryFile(const BinaryFileHeader *header, u32 magic, u16 version, u16 numBlocks) {
if (header->magic != magic) {
return false;
}