Skip to content

Commit

Permalink
Add explicit parameter in
Browse files Browse the repository at this point in the history
  • Loading branch information
peppy committed Nov 14, 2024
1 parent 3262b6d commit d1b5d31
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions osu.Game/Screens/Play/Player.cs
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ private void load(OsuConfigManager config, OsuGameBase game, CancellationToken c
{
if (!this.IsCurrentScreen()) return;
PerformExit(true);
PerformExit(skipTransition: true);
},
},
});
Expand Down Expand Up @@ -721,7 +721,7 @@ public bool Restart(bool quickRestart = false)

RestartRequested?.Invoke(quickRestart);

return PerformExit(quickRestart);
return PerformExit(skipTransition: quickRestart);
}

/// <summary>
Expand Down

0 comments on commit d1b5d31

Please sign in to comment.