mirror of https://github.com/ppy/osu
Fix path specification not being cross-platform compliant
This commit is contained in:
parent
99da04527d
commit
87c8fd0035
|
@ -25,7 +25,7 @@ public class ScoreManager : DownloadableArchiveModelManager<ScoreInfo, ScoreFile
|
|||
|
||||
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;
|
||||
|
|
Loading…
Reference in New Issue