1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 15:27:24 +08:00

Merge pull request #4301 from peppy/fix-filename

Fix non-conforming filename
This commit is contained in:
Dean Herbert 2019-02-21 11:41:36 +09:00 committed by GitHub
commit 264fa34c13
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -11,9 +11,9 @@ using osuTK;
namespace osu.Game.Rulesets.Osu.Replays
{
public class OsuReplayInputHandler : FramedReplayInputHandler<OsuReplayFrame>
public class OsuFramedReplayInputHandler : FramedReplayInputHandler<OsuReplayFrame>
{
public OsuReplayInputHandler(Replay replay)
public OsuFramedReplayInputHandler(Replay replay)
: base(replay)
{
}

View File

@ -46,7 +46,7 @@ namespace osu.Game.Rulesets.Osu.UI
return null;
}
protected override ReplayInputHandler CreateReplayInputHandler(Replay replay) => new OsuReplayInputHandler(replay);
protected override ReplayInputHandler CreateReplayInputHandler(Replay replay) => new OsuFramedReplayInputHandler(replay);
public override double GameplayStartTime
{