1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-20 15:20:18 +08:00

Merge pull request #4307 from DJKero/master

Fix key counters being ordered incorrectly
This commit is contained in:
Dean Herbert
2019-02-25 10:12:59 +09:00
committed by GitHub
Unverified
+3 -3
View File
@@ -330,12 +330,12 @@ namespace osu.Game.Rulesets.Mania
for (int i = LeftKeys.Length - columns / 2; i < LeftKeys.Length; i++)
bindings.Add(new KeyBinding(LeftKeys[i], currentNormalAction++));
for (int i = 0; i < columns / 2; i++)
bindings.Add(new KeyBinding(RightKeys[i], currentNormalAction++));
if (columns % 2 == 1)
bindings.Add(new KeyBinding(SpecialKey, SpecialAction));
for (int i = 0; i < columns / 2; i++)
bindings.Add(new KeyBinding(RightKeys[i], currentNormalAction++));
nextNormalAction = currentNormalAction;
return bindings;
}