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

@ -120,9 +120,9 @@ namespace osu.Game.Modes.Osu
new KeyCounterMouse(MouseButton.Right)
};
public override IBeatmapConverter<OsuHitObject> CreateBeatmapConverter<OsuHitObject>()
public override IBeatmapConverter<T> CreateBeatmapConverter<T>()
{
return (IBeatmapConverter<OsuHitObject>)new OsuBeatmapConverter();
return (IBeatmapConverter<T>)new OsuBeatmapConverter();
}
}
}