aboutsummaryrefslogtreecommitdiff
path: root/src/common.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/common.cpp')
-rw-r--r--src/common.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common.cpp b/src/common.cpp
index 8e23090e5..ccf165d35 100644
--- a/src/common.cpp
+++ b/src/common.cpp
@@ -14,8 +14,8 @@ struct HashKey {
gb_inline HashKey hashing_proc(void const *data, isize len) {
HashKey h = {};
- h.key = gb_murmur64(data, len);
- // h.key = gb_fnv64a(data, len);
+ // h.key = gb_murmur64(data, len);
+ h.key = gb_fnv64a(data, len);
return h;
}