summaryrefslogtreecommitdiff
path: root/core/compressed_translation.h
diff options
context:
space:
mode:
Diffstat (limited to 'core/compressed_translation.h')
-rw-r--r--core/compressed_translation.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/core/compressed_translation.h b/core/compressed_translation.h
index 032e391729..3c029bdf58 100644
--- a/core/compressed_translation.h
+++ b/core/compressed_translation.h
@@ -61,8 +61,9 @@ class PHashTranslation : public Translation {
};
_FORCE_INLINE_ uint32_t hash(uint32_t d, const char *p_str) const {
- if (d == 0)
+ if (d == 0) {
d = 0x1000193;
+ }
while (*p_str) {
d = (d * 0x1000193) ^ uint32_t(*p_str);
p_str++;