mirror of
https://github.com/Ed94/raddebugger.git
synced 2026-06-13 23:52:22 -07:00
typo in string table lookup
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user