mirror of
https://github.com/osukey/osukey.git
synced 2025-06-08 12:58:01 +09:00
Add support for storyboards with incorrect path specifications (\\
instead of \
)
Closes https://github.com/ppy/osu/issues/21204.
This commit is contained in:
parent
4a79141824
commit
3da21e596a
@ -147,7 +147,11 @@ namespace osu.Game.Beatmaps.Formats
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
protected string CleanFilename(string path) => path.Trim('"').ToStandardisedPath();
|
protected string CleanFilename(string path) => path
|
||||||
|
// User error which is supported by stable (https://github.com/ppy/osu/issues/21204)
|
||||||
|
.Replace(@"\\", @"\")
|
||||||
|
.Trim('"')
|
||||||
|
.ToStandardisedPath();
|
||||||
|
|
||||||
public enum Section
|
public enum Section
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user