diff --git a/src/ui/ui_core.c b/src/ui/ui_core.c index 264ecb36..8c2ddcc7 100644 --- a/src/ui/ui_core.c +++ b/src/ui/ui_core.c @@ -25,8 +25,7 @@ UI_Key UI_KeyFromString(String str) { u64 top_tag = UI_UseTop(Tag); UI_Key key = ZI; - key.hash = RandU64FromSeeds(key.hash, top_tag); - key.hash = HashFnv64(key.hash, str); + key.hash = HashFnv64(top_tag, str); return key; }