Skip to content

Commit

Permalink
Merge pull request ppy#31156 from frenzibyte/mobile-delayed-resume-ov…
Browse files Browse the repository at this point in the history
…erlay

Use time-based resume overlay when playing osu! on touchscreen
  • Loading branch information
smoogipoo authored Dec 18, 2024
2 parents d72a0b0 + 4bf90a5 commit d542382
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion osu.Game.Rulesets.Osu/UI/DrawableOsuRuleset.cs
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ private void load(ReplayPlayer? replayPlayer)

protected override ResumeOverlay CreateResumeOverlay()
{
if (Mods.Any(m => m is OsuModAutopilot))
if (Mods.Any(m => m is OsuModAutopilot or OsuModTouchDevice))
return new DelayedResumeOverlay { Scale = new Vector2(0.65f) };

return new OsuResumeOverlay();
Expand Down

0 comments on commit d542382

Please sign in to comment.