mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-06 23:58:50 +00:00
Correct: murmur32
This commit is contained in:
+1
-1
@@ -151,7 +151,7 @@ murmur32 :: proc(data: []byte, seed := u32(0)) -> u32 {
|
|||||||
k1 ~= u32(tail[2]) << 16
|
k1 ~= u32(tail[2]) << 16
|
||||||
fallthrough
|
fallthrough
|
||||||
case 2:
|
case 2:
|
||||||
k1 ~= u32(tail[2]) << 8
|
k1 ~= u32(tail[1]) << 8
|
||||||
fallthrough
|
fallthrough
|
||||||
case 1:
|
case 1:
|
||||||
k1 ~= u32(tail[0])
|
k1 ~= u32(tail[0])
|
||||||
|
|||||||
Reference in New Issue
Block a user