From 7082a1a87cff727e70ae3b2d8ba786aeebe106ea Mon Sep 17 00:00:00 2001 From: ianpatt Date: Mon, 6 May 2024 12:20:56 -0700 Subject: [PATCH] fix #26 --- f4se/GameUtilities.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/f4se/GameUtilities.h b/f4se/GameUtilities.h index b42a57b..0e6153b 100644 --- a/f4se/GameUtilities.h +++ b/f4se/GameUtilities.h @@ -20,7 +20,7 @@ namespace BSHash UInt32 operator()(const Key& a_key) const { UInt32 crc32; - CalculateCRC32_SIZE(crc32, &a_key, sizeof(Key), 0); + CalculateCRC32_SIZE(&crc32, &a_key, sizeof(Key), 0); return crc32; } };