1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-29 04:49:58 +08:00

Merge pull request #7856 from peppy/fix-video-error

Fix visible error being thrown when playing a no-video beatmap
This commit is contained in:
Dan Balasescu
2020-02-16 16:44:18 +09:00
committed by GitHub
Unverified
@@ -74,7 +74,9 @@ namespace osu.Game.Beatmaps
try
{
return new VideoSprite(textureStore.GetStream(getPathForFile(Metadata.VideoFile)));
var stream = textureStore.GetStream(getPathForFile(Metadata.VideoFile));
return stream == null ? null : new VideoSprite(stream);
}
catch (Exception e)
{