1
0
mirror of https://github.com/ppy/osu.git synced 2026-06-01 14:46:05 +08:00

Actually combine the path

This commit is contained in:
Dean Herbert
2021-06-02 15:13:21 +09:00
Unverified
parent bf216687e1
commit d5d5a4d0d7
+1 -1
View File
@@ -57,7 +57,7 @@ namespace osu.Desktop
private string getStableInstallPath()
{
static bool checkExists(string p) => Directory.Exists(Path.Combine(p, "Songs")) || File.Exists("osu!.cfg");
static bool checkExists(string p) => Directory.Exists(Path.Combine(p, "Songs")) || File.Exists(Path.Combine(p, "osu!.cfg"));
string stableInstallPath;