Commit graph

2 commits

Author SHA1 Message Date
Sei Lisa
1d6bb809bf Fix bug in llListSortStrided producing incorrect results sometimes
It used `a = lst[i]` instead of taking the stride index into account (that is, it should have been `a = lst[i+idx]`). Anyway, the exact same value is in b, so use that instead.

Test case by Tapple Gao.
2024-10-09 01:40:19 +02:00
Sei Lisa
ff85a1e837 Implement llListSortStrided
The only difference between this function and llListSort is the index, so llListSort is adapted to accept it.
2024-04-19 15:22:35 +02:00