1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 09:27:29 +08:00

Remove redundant class name qualifier

This commit is contained in:
Bartłomiej Dach 2020-11-10 12:20:49 +01:00
parent ce837eaba0
commit 61093030ee

View File

@ -118,7 +118,7 @@ namespace osu.Game.Storyboards.Drawables
for (int frameIndex = 0; frameIndex < Animation.FrameCount; frameIndex++)
{
string framePath = Animation.Path.Replace(".", frameIndex + ".");
Drawable frame = storyboard.CreateSpriteFromResourcePath(framePath, textureStore) ?? Drawable.Empty();
Drawable frame = storyboard.CreateSpriteFromResourcePath(framePath, textureStore) ?? Empty();
AddFrame(frame, Animation.FrameDelay);
}