Video no longer modifies storyboard resolution

This commit is contained in:
voidedWarranties
2020-03-24 20:04:09 -07:00
parent f2e0fba164
commit b8f20831a1
2 changed files with 4 additions and 4 deletions

View File

@ -90,9 +90,9 @@ namespace osu.Game.Beatmaps.Formats
case LegacyEventType.Video:
{
var offset = Parsing.ParseInt(split[1]);
var filename = CleanFilename(split[2]);
var path = CleanFilename(split[2]);
storyboard.GetLayer("Video").Add(new StoryboardVideo(filename, offset));
storyboard.GetLayer("Video").Add(new StoryboardVideo(path, offset));
break;
}