mirror of
https://github.com/nicbarker/clay.git
synced 2025-05-13 05:48:04 +00:00
Compare commits
2 Commits
d9ad451d3e
...
f6ddb261c7
Author | SHA1 | Date | |
---|---|---|---|
|
f6ddb261c7 | ||
|
40ae6d8894 |
2
clay.h
2
clay.h
@ -1040,7 +1040,7 @@ uint32_t Clay__HashTextWithConfig(Clay_String *text, Clay_TextElementConfig *con
|
||||
|
||||
if (config->hashStringContents) {
|
||||
uint32_t maxLengthToHash = CLAY__MIN(text->length, 256);
|
||||
for (int i = 0; i < maxLengthToHash; i++) {
|
||||
for (uint32_t i = 0; i < maxLengthToHash; i++) {
|
||||
hash += text->chars[i];
|
||||
hash += (hash << 10);
|
||||
hash ^= (hash >> 6);
|
||||
|
Loading…
Reference in New Issue
Block a user