re-add id stability to top-level-cfg evaluation expansions

This commit is contained in:
Ryan Fleury
2025-02-10 15:51:36 -08:00
parent f3c17a4e2c
commit 428617de91
3 changed files with 41 additions and 3 deletions
@@ -770,7 +770,7 @@ internal EV_BlockRange
ev_block_range_from_num(EV_BlockRangeList *block_ranges, U64 num)
{
EV_BlockRange result = {&ev_nil_block};
U64 base_num = 0;
U64 base_num = 1;
for(EV_BlockRangeNode *n = block_ranges->first; n != 0; n = n->next)
{
U64 range_size = n->v.block->single_item ? 1 : dim_1u64(n->v.range);