mirror of
https://github.com/Ed94/raddebugger.git
synced 2026-07-20 23:46:48 +00:00
increase hash store history limit; fix incorrectly skipping important go-to-code-location commands
This commit is contained in:
@@ -201,7 +201,7 @@ internal R_Handle
|
||||
geo_buffer_from_key(GEO_Scope *scope, U128 key)
|
||||
{
|
||||
R_Handle handle = {0};
|
||||
for(U64 rewind_idx = 0; rewind_idx < 2; rewind_idx += 1)
|
||||
for(U64 rewind_idx = 0; rewind_idx < HS_KEY_HASH_HISTORY_COUNT; rewind_idx += 1)
|
||||
{
|
||||
U128 hash = hs_hash_from_key(key, rewind_idx);
|
||||
handle = geo_buffer_from_hash(scope, hash);
|
||||
|
||||
Reference in New Issue
Block a user