1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-23 10:20:07 +08:00

Revert "Check for skins folder also"

This reverts commit eb86f9de5e.
This commit is contained in:
Paul Teng
2018-09-15 09:33:31 -04:00
Unverified
parent eb86f9de5e
commit 75e6bbc4d8
+1 -1
View File
@@ -92,7 +92,7 @@ namespace osu.Desktop
{
protected override string LocateBasePath()
{
bool checkExists(string p) => Directory.Exists(Path.Combine(p, "Songs")) && Directory.Exists(Path.Combine(p, "Skins"));
bool checkExists(string p) => Directory.Exists(Path.Combine(p, "Songs"));
string stableInstallPath;