1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 21:07:33 +08:00

Pass noVideo flag on...

This commit is contained in:
naoey 2017-11-15 17:49:41 +05:30
parent 5aeeb9aac6
commit bbe555dc3c

View File

@ -228,7 +228,7 @@ namespace osu.Game.Overlays.BeatmapSet
this.beatmaps = beatmaps;
}
private void download(bool video)
private void download(bool noVideo)
{
if (beatmaps.GetExistingDownload(BeatmapSet) != null)
{
@ -240,7 +240,7 @@ namespace osu.Game.Overlays.BeatmapSet
return;
}
beatmaps.Download(BeatmapSet);
beatmaps.Download(BeatmapSet, noVideo);
}
}
}