mirror of
https://github.com/Ed94/raddebugger.git
synced 2026-06-17 17:42:22 -07:00
increase hash store history limit; fix incorrectly skipping important go-to-code-location commands
This commit is contained in:
@@ -1767,7 +1767,7 @@ internal TXT_TextInfo
|
||||
txt_text_info_from_key_lang(TXT_Scope *scope, U128 key, TXT_LangKind lang, U128 *hash_out)
|
||||
{
|
||||
TXT_TextInfo result = {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);
|
||||
result = txt_text_info_from_hash_lang(scope, hash, lang);
|
||||
|
||||
Reference in New Issue
Block a user