typo in string table lookup

This commit is contained in:
Nikita Smith
2024-10-22 10:58:41 -07:00
parent 5be2b5dfd9
commit dcffefd0c6
+1 -1
View File
@@ -1628,7 +1628,7 @@ cv_string_hash_table_lookup(CV_StringHashTable ht, String8 string)
return ht.buckets[idx];
}
idx = (idx + 1 % ht.bucket_cap);
idx = (idx + 1) % ht.bucket_cap;
} while (idx != best_idx);
return 0;