1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-20 13:20:21 +08:00

Fix database entries using platform-specific path separator

This commit is contained in:
HoLLy
2018-10-07 19:15:42 +02:00
Unverified
parent 86f11777a7
commit db443babb6
+1 -1
View File
@@ -404,7 +404,7 @@ namespace osu.Game.Database
using (Stream s = reader.GetStream(file))
fileInfos.Add(new TFileModel
{
Filename = FileSafety.PathSanitise(file),
Filename = FileSafety.PathStandardise(file),
FileInfo = files.Add(s)
});