1
0
mirror of https://github.com/ppy/osu.git synced 2026-06-07 15:24:59 +08:00

Fix file and class name mismatch

This commit is contained in:
Dan Balasescu
2025-11-02 11:58:09 +09:00
Unverified
parent 9a393f912b
commit 2413e98108
4 changed files with 5 additions and 5 deletions
@@ -26,7 +26,7 @@ namespace osu.Game.Tests.Visual.Matchmaking
{
base.SetUpSteps();
AddStep("load screen", () => LoadScreen(new IntroScreen()));
AddStep("load screen", () => LoadScreen(new ScreenIntro()));
}
[Test]
+1 -1
View File
@@ -482,7 +482,7 @@ namespace osu.Game.Screens.Menu
private void loadSongSelect() => this.Push(new SoloSongSelect());
private void joinOrLeaveMatchmakingQueue() => this.Push(new OnlinePlay.Matchmaking.Intro.IntroScreen());
private void joinOrLeaveMatchmakingQueue() => this.Push(new OnlinePlay.Matchmaking.Intro.ScreenIntro());
private partial class MobileDisclaimerDialog : PopupDialog
{
@@ -21,7 +21,7 @@ namespace osu.Game.Screens.OnlinePlay.Matchmaking.Intro
/// <summary>
/// A brief intro animation that introduces matchmaking to the user.
/// </summary>
public partial class IntroScreen : OsuScreen
public partial class ScreenIntro : OsuScreen
{
public override bool DisallowExternalBeatmapRulesetChanges => false;
@@ -55,7 +55,7 @@ namespace osu.Game.Screens.OnlinePlay.Matchmaking.Intro
protected override BackgroundScreen CreateBackground() => new MatchmakingIntroBackgroundScreen(colourProvider);
public IntroScreen()
public ScreenIntro()
{
ValidForResume = false;
}
@@ -165,7 +165,7 @@ namespace osu.Game.Screens.OnlinePlay.Matchmaking.Queue
CompletionClickAction = () =>
{
client.MatchmakingAcceptInvitation().FireAndForget();
performer?.PerformFromScreen(s => s.Push(new IntroScreen()));
performer?.PerformFromScreen(s => s.Push(new ScreenIntro()));
Close(false);
return true;