mirror of
https://github.com/Ed94/raddebugger.git
synced 2026-07-31 11:20:03 +00:00
sort locals by debug info order; still likely not sufficient for all the options, but at least marginally better & introduces the sorting path
This commit is contained in:
@@ -955,7 +955,7 @@ df_qsort_compare_cmd_spec__run_counter(DF_CmdSpec **a, DF_CmdSpec **b)
|
||||
internal void
|
||||
df_cmd_spec_array_sort_by_run_counter__in_place(DF_CmdSpecArray array)
|
||||
{
|
||||
qsort(array.v, array.count, sizeof(DF_CmdSpec *), (int (*)(const void *, const void *))df_qsort_compare_cmd_spec__run_counter);
|
||||
quick_sort(array.v, array.count, sizeof(DF_CmdSpec *), df_qsort_compare_cmd_spec__run_counter);
|
||||
}
|
||||
|
||||
internal DF_Handle
|
||||
|
||||
Reference in New Issue
Block a user