General fixups.

This commit is contained in:
smoogipooo
2017-03-12 01:26:07 +09:00
parent 77a4a896c9
commit 1c7a9e3a07
6 changed files with 10 additions and 13 deletions

View File

@ -93,9 +93,9 @@ namespace osu.Game.Modes.Catch
public override DifficultyCalculator CreateDifficultyCalculator(Beatmap beatmap) => new CatchDifficultyCalculator(beatmap);
public override IBeatmapConverter<CatchBaseHit> CreateBeatmapConverter<CatchBaseHit>()
public override IBeatmapConverter<T> CreateBeatmapConverter<T>()
{
return (IBeatmapConverter<CatchBaseHit>)new CatchBeatmapConverter();
return (IBeatmapConverter<T>)new CatchBeatmapConverter();
}
}
}