From 16fecc6effda8f57f49496950e28532a800301c9 Mon Sep 17 00:00:00 2001 From: Lena Date: Fri, 26 Jul 2024 13:34:02 +0200 Subject: [PATCH] actually add boss key binding on windows --- osu.Game/Input/Bindings/GlobalActionContainer.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osu.Game/Input/Bindings/GlobalActionContainer.cs b/osu.Game/Input/Bindings/GlobalActionContainer.cs index 05ea346bef..a98efde939 100644 --- a/osu.Game/Input/Bindings/GlobalActionContainer.cs +++ b/osu.Game/Input/Bindings/GlobalActionContainer.cs @@ -118,7 +118,7 @@ namespace osu.Game.Input.Bindings }; if (OperatingSystem.IsWindows()) - bindings.Append(new KeyBinding(InputKey.Insert, GlobalAction.BossKey)); + return bindings.Append(new KeyBinding(InputKey.Insert, GlobalAction.BossKey)); return bindings; }