mirror of
https://github.com/Ed94/raddebugger.git
synced 2026-08-06 13:58:40 +00:00
fix dbgi key array copy
This commit is contained in:
@@ -85,6 +85,7 @@ internal DI_KeyArray
|
|||||||
di_key_array_copy(Arena *arena, DI_KeyArray *src)
|
di_key_array_copy(Arena *arena, DI_KeyArray *src)
|
||||||
{
|
{
|
||||||
DI_KeyArray dst = {0};
|
DI_KeyArray dst = {0};
|
||||||
|
dst.count = src->count;
|
||||||
dst.v = push_array(arena, DI_Key, dst.count);
|
dst.v = push_array(arena, DI_Key, dst.count);
|
||||||
for EachIndex(idx, dst.count)
|
for EachIndex(idx, dst.count)
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user