mirror of
https://github.com/ClassiCube/ClassiCube.git
synced 2025-09-16 11:06:06 -04:00
Fix hotkeys modifiers in C client
This commit is contained in:
parent
245bf92641
commit
3aecb338c1
@ -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 */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user