1
0
Fork 0
mirror of https://github.com/italicsjenga/agb.git synced 2025-02-23 22:58:18 +11:00

merge multiple blocks

This commit is contained in:
Corwin Kuiper 2022-01-20 19:06:48 +00:00
parent 1614e46c4e
commit 08e07a0d37

View file

@ -94,6 +94,7 @@ impl BlockAllocator {
current.size += next.size; current.size += next.size;
current.next = next.next; current.next = next.next;
continue;
} }
} }
list_ptr = &mut curr.as_mut().next; list_ptr = &mut curr.as_mut().next;