mirror of https://github.com/ppy/osu
Add difficulty calculator beatmap decoder fallback
This commit is contained in:
parent
6268bbcfc8
commit
ffde389641
|
@ -24,6 +24,7 @@ public LegacyDifficultyCalculatorBeatmapDecoder(int version = LATEST_VERSION)
|
|||
public new static void Register()
|
||||
{
|
||||
AddDecoder<Beatmap>(@"osu file format v", m => new LegacyDifficultyCalculatorBeatmapDecoder(int.Parse(m.Split('v').Last())));
|
||||
SetFallbackDecoder<Beatmap>(() => new LegacyDifficultyCalculatorBeatmapDecoder());
|
||||
}
|
||||
|
||||
protected override TimingControlPoint CreateTimingControlPoint()
|
||||
|
|
Loading…
Reference in New Issue