Fix storyboard animations of very old beatmaps playing too slow

Closes https://github.com/ppy/osu/issues/10772.
This commit is contained in:
Dean Herbert
2020-11-12 17:03:42 +09:00
parent ffad1b3d94
commit 25af091409
3 changed files with 11 additions and 5 deletions

View File

@ -16,6 +16,8 @@ namespace osu.Game.Beatmaps.Formats
public abstract class LegacyDecoder<T> : Decoder<T>
where T : new()
{
public const int LATEST_VERSION = 14;
protected readonly int FormatVersion;
protected LegacyDecoder(int version)