mirror of
https://github.com/ppy/osu.git
synced 2024-12-14 12:33:01 +08:00
Apply input method signature refactorings
This commit is contained in:
parent
fc331e7752
commit
b62e3addf3
@ -235,13 +235,15 @@ namespace osu.Game.Overlays.KeyBinding
|
||||
return true;
|
||||
}
|
||||
|
||||
protected override bool OnJoystickRelease(JoystickReleaseEvent e)
|
||||
protected override void OnJoystickRelease(JoystickReleaseEvent e)
|
||||
{
|
||||
if (!HasFocus)
|
||||
return base.OnJoystickRelease(e);
|
||||
{
|
||||
base.OnJoystickRelease(e);
|
||||
return;
|
||||
}
|
||||
|
||||
finalise();
|
||||
return true;
|
||||
}
|
||||
|
||||
private void clear()
|
||||
|
Loading…
Reference in New Issue
Block a user