Refactor ReplayInputHandler creation for more flexibility.

This commit is contained in:
Dean Herbert
2017-03-31 15:59:53 +09:00
parent 0f4b98ce73
commit fa7c72a099
13 changed files with 84 additions and 119 deletions

View File

@ -101,7 +101,7 @@ namespace osu.Game.Database
using (var lzma = new LzmaStream(properties, replayInStream, compressedSize, outSize))
using (var reader = new StreamReader(lzma))
score.Replay = score.CreateLegacyReplayFrom(reader);
score.Replay = score.CreateReplay(reader);
}
}