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:
Ryan Fleury
2024-06-20 07:35:59 -07:00
parent 6eef8c3e16
commit b76c605eba
8 changed files with 70 additions and 16 deletions
+1 -1
View File
@@ -517,7 +517,7 @@ fzy_search_thread__entry_point(void *p)
//- rjf: sort item array
if(items.count != 0 && query.size != 0)
{
qsort(items.v, items.count, sizeof(FZY_Item), (int (*)(const void *, const void *))fzy_qsort_compare_items);
quick_sort(items.v, items.count, sizeof(FZY_Item), fzy_qsort_compare_items);
}
//- rjf: commit to cache - busyloop on scope touches