Fix hotkeys modifiers in C client

This commit is contained in:
UnknownShadow200 2018-05-18 10:06:13 +10:00
parent 245bf92641
commit 3aecb338c1

View File

@ -205,8 +205,8 @@ void Hotkeys_QuickSort(Int32 left, Int32 right) {
/* partition the list */ /* partition the list */
while (i <= j) { while (i <= j) {
while (pivot > keys[i].Flags) i++; while (pivot < keys[i].Flags) i++;
while (pivot < keys[j].Flags) j--; while (pivot > keys[j].Flags) j--;
QuickSort_Swap_Maybe(); QuickSort_Swap_Maybe();
} }
/* recurse into the smaller subset */ /* recurse into the smaller subset */