Fix path specification not being cross-platform compliant

This commit is contained in:
Dean Herbert 2019-07-05 14:15:29 +09:00
parent 99da04527d
commit 87c8fd0035
1 changed files with 1 additions and 1 deletions

View File

@ -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;