1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 04:07:25 +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
parent eb86f9de5e
commit 75e6bbc4d8

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;