mirror of
https://github.com/Ed94/raddebugger.git
synced 2026-08-04 21:08:40 +00: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];
|
return ht.buckets[idx];
|
||||||
}
|
}
|
||||||
|
|
||||||
idx = (idx + 1 % ht.bucket_cap);
|
idx = (idx + 1) % ht.bucket_cap;
|
||||||
} while (idx != best_idx);
|
} while (idx != best_idx);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
|||||||
Reference in New Issue
Block a user