remove ui key mix

This commit is contained in:
jacob 2025-11-06 13:35:08 -06:00
parent f2316869e2
commit 051f166663

View File

@ -25,8 +25,7 @@ UI_Key UI_KeyFromString(String str)
{ {
u64 top_tag = UI_UseTop(Tag); u64 top_tag = UI_UseTop(Tag);
UI_Key key = ZI; UI_Key key = ZI;
key.hash = RandU64FromSeeds(key.hash, top_tag); key.hash = HashFnv64(top_tag, str);
key.hash = HashFnv64(key.hash, str);
return key; return key;
} }