Merge remote-tracking branch 'upstream/master' into 13.0

This commit is contained in:
dP
2023-02-03 15:48:54 +04:00
159 changed files with 6991 additions and 4963 deletions

View File

@@ -339,7 +339,7 @@ void EngList_Sort(GUIEngineList *el, EngList_SortTypeFunction compare)
* @param begin start of sorting
* @param num_items count of items to be sorted
*/
void EngList_SortPartial(GUIEngineList *el, EngList_SortTypeFunction compare, uint begin, uint num_items)
void EngList_SortPartial(GUIEngineList *el, EngList_SortTypeFunction compare, size_t begin, size_t num_items)
{
if (num_items < 2) return;
assert(begin < el->size());