Merge remote-tracking branch 'origin/master' into import-stable-scores

This commit is contained in:
HoLLy
2019-06-21 17:42:59 +02:00
166 changed files with 8778 additions and 1228 deletions

View File

@ -365,7 +365,7 @@ namespace osu.Game.Beatmaps
foreach (var name in reader.Filenames.Where(f => f.EndsWith(".osu")))
{
using (var raw = reader.GetStream(name))
using (var ms = new MemoryStream()) //we need a memory stream so we can seek and shit
using (var ms = new MemoryStream()) //we need a memory stream so we can seek
using (var sr = new StreamReader(ms))
{
raw.CopyTo(ms);