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