Fix AutoPilot mod failing to block touch input

This commit is contained in:
Dean Herbert 2021-02-09 15:31:55 +09:00
parent a886000fbf
commit 695e46a358
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ public OsuInputManager(RulesetInfo ruleset)
protected override bool Handle(UIEvent e)
{
if (e is MouseMoveEvent && !AllowUserCursorMovement) return false;
if ((e is MouseMoveEvent || e is TouchMoveEvent) && !AllowUserCursorMovement) return false;
return base.Handle(e);
}