Skip to content

Commit

Permalink
Update sorting.inc
Browse files Browse the repository at this point in the history
  • Loading branch information
JoinedSenses authored May 4, 2022
1 parent 63e6f81 commit 0969e16
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugins/include/sorting.inc
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ typedef SortFunc2D = function int (any[] elem1, any[] elem2, const any[][] array
* @param array Array to sort.
* @param array_size Size of the major array to sort (first index, outermost).
* @param sortfunc Sort comparison function to use.
* @param hndl Optional Handle to pass through the comparison calls.
* @param data Optional Handle or value to pass through the comparison calls.
*/
native void SortCustom2D(any[][] array, int array_size, SortFunc2D sortfunc, any data=0);

Expand Down Expand Up @@ -160,6 +160,6 @@ typedef SortFuncADTArray = function int (int index1, int index2, Handle array, a
*
* @param array Array Handle to sort
* @param sortfunc Sort comparison function to use
* @param data Optional Handle or data to pass through the comparison calls.
* @param data Optional Handle or value to pass through the comparison calls.
*/
native void SortADTArrayCustom(Handle array, SortFuncADTArray sortfunc, any data=0);

0 comments on commit 0969e16

Please sign in to comment.