From 62e0778390f838cdb92f16b3582e2d76299ae8a5 Mon Sep 17 00:00:00 2001 From: elijah-thomas774 Date: Sun, 12 May 2024 16:04:01 -0400 Subject: fixed up typedef for u32 and s32 from mistake long ago --- src/nw4r/ut/ut_binaryFileFormat.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/nw4r/ut/ut_binaryFileFormat.cpp') 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; } -- cgit v1.2.3