1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-19 12:22:57 +08:00

CreateScoreInfo -> CreateScore

This commit is contained in:
smoogipoo 2018-11-30 18:32:08 +09:00
parent a6b0e35b2d
commit 795933d1a1
2 changed files with 3 additions and 3 deletions

View File

@ -276,7 +276,7 @@ namespace osu.Game.Screens.Play
{
if (!IsCurrentScreen) return;
var score = CreateScoreInfo();
var score = CreateScore();
if (RulesetContainer.Replay == null)
scoreManager.Import(score, true);
@ -287,7 +287,7 @@ namespace osu.Game.Screens.Play
}
}
protected virtual ScoreInfo CreateScoreInfo()
protected virtual ScoreInfo CreateScore()
{
var score = new ScoreInfo
{

View File

@ -20,6 +20,6 @@ namespace osu.Game.Screens.Play
RulesetContainer.SetReplay(score.Replay);
}
protected override ScoreInfo CreateScoreInfo() => score.ScoreInfo;
protected override ScoreInfo CreateScore() => score.ScoreInfo;
}
}