1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-15 05:02:55 +08:00

Check for skins folder also

This commit is contained in:
Paul Teng 2018-09-15 09:28:19 -04:00
parent 8cb0b5e98d
commit eb86f9de5e

View File

@ -92,7 +92,7 @@ namespace osu.Desktop
{
protected override string LocateBasePath()
{
bool checkExists(string p) => Directory.Exists(Path.Combine(p, "Songs"));
bool checkExists(string p) => Directory.Exists(Path.Combine(p, "Songs")) && Directory.Exists(Path.Combine(p, "Skins"));
string stableInstallPath;