aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorryuukk <44361234+ryuukk@users.noreply.github.com>2023-05-06 18:00:33 +0200
committerGitHub <noreply@github.com>2023-05-06 18:00:33 +0200
commitf313538ea5cfbff0139e46ce71a389ddec5cfffd (patch)
tree8cde7a70cb870fbe8e97f6cdac02b620b4c7d491
parent182b269e4642be2e40afbb39f7d8a9ac0a5aeed5 (diff)
Missing cast
-rw-r--r--src/ptr_map.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ptr_map.cpp b/src/ptr_map.cpp
index fbde98693..23278014f 100644
--- a/src/ptr_map.cpp
+++ b/src/ptr_map.cpp
@@ -47,7 +47,7 @@ gb_internal gb_inline u32 ptr_map_hash_key(uintptr key) {
key = key ^ (key << 28);
res = cast(u32)key;
#elif defined(GB_ARCH_32_BIT)
- u32 state = ((u32)key) * 747796405u + 2891336453u;
+ u32 state = (cast(u32)key) * 747796405u + 2891336453u;
u32 word = ((state >> ((state >> 28u) + 4u)) ^ state) * 277803737u;
res = (word >> 22u) ^ word;
#endif