Skip to content

Commit

Permalink
fix #26
Browse files Browse the repository at this point in the history
  • Loading branch information
ianpatt committed May 6, 2024
1 parent 16606cf commit 7082a1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion f4se/GameUtilities.h
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
};
Expand Down

0 comments on commit 7082a1a

Please sign in to comment.