1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-24 14:51:31 +08:00

Fix path specification not being cross-platform compliant

This commit is contained in:
Dean Herbert
2019-07-05 14:15:29 +09:00
Unverified
parent 99da04527d
commit 87c8fd0035
+1 -1
View File
@@ -25,7 +25,7 @@ namespace osu.Game.Scoring
protected override string[] HashableFileTypes => new[] { ".osr" };
protected override string ImportFromStablePath => @"Data\r";
protected override string ImportFromStablePath => Path.Combine("Data", "r");
private readonly RulesetStore rulesets;
private readonly Func<BeatmapManager> beatmaps;