Change osu! default keys back to Z/X

A/S was no better as far as keyboard layout agnostic-ness. And people are confused if we change the defaults. Need to take a step back and reassess.
This commit is contained in:
Dean Herbert 2018-12-22 09:48:55 +09:00
parent c1d316d06e
commit f0dfc75bb2
1 changed files with 2 additions and 2 deletions

View File

@ -31,8 +31,8 @@ public class OsuRuleset : Ruleset
public override IEnumerable<KeyBinding> GetDefaultKeyBindings(int variant = 0) => new[]
{
new KeyBinding(InputKey.A, OsuAction.LeftButton),
new KeyBinding(InputKey.S, OsuAction.RightButton),
new KeyBinding(InputKey.Z, OsuAction.LeftButton),
new KeyBinding(InputKey.X, OsuAction.RightButton),
new KeyBinding(InputKey.MouseLeft, OsuAction.LeftButton),
new KeyBinding(InputKey.MouseRight, OsuAction.RightButton),
};