Fix non-matching filename

This commit is contained in:
Dean Herbert 2019-01-18 14:33:40 +09:00
parent 21e79f51b1
commit f489718e25
2 changed files with 13 additions and 8 deletions

View File

@ -0,0 +1,13 @@
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
namespace osu.Game.Overlays.Direct
{
public enum DownloadState
{
NotDownloaded,
Downloading,
Downloaded,
LocallyAvailable
}
}

View File

@ -114,12 +114,4 @@ private void setAdded(BeatmapSetInfo s, bool existing, bool silent)
Schedule(() => State.Value = DownloadState.LocallyAvailable);
}
}
public enum DownloadState
{
NotDownloaded,
Downloading,
Downloaded,
LocallyAvailable
}
}