1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-22 04:09:54 +08:00

add boss key binding only on windows

This commit is contained in:
Lena
2024-07-23 15:29:39 +02:00
Unverified
parent 564c6dd792
commit d8d695242e
@@ -84,6 +84,8 @@ namespace osu.Game.Input.Bindings
public void OnReleased(KeyBindingReleaseEvent<GlobalAction> e) => handler?.OnReleased(e);
private static IEnumerable<KeyBinding> globalKeyBindings => new[]
{
new KeyBinding(InputKey.Up, GlobalAction.SelectPrevious),
@@ -111,7 +113,6 @@ namespace osu.Game.Input.Bindings
new KeyBinding(InputKey.F10, GlobalAction.ToggleGameplayMouseButtons),
new KeyBinding(InputKey.F12, GlobalAction.TakeScreenshot),
new KeyBinding(InputKey.Insert, GlobalAction.BossKey),
};