mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 12:17:26 +08:00
Correct null check
This commit is contained in:
parent
05147768d3
commit
acc133896b
@ -59,7 +59,7 @@ namespace osu.Game.Storyboards.Drawables
|
||||
[BackgroundDependencyLoader(true)]
|
||||
private void load(FileStore fileStore, GameplayClock clock)
|
||||
{
|
||||
if (Clock != null)
|
||||
if (clock != null)
|
||||
Clock = clock;
|
||||
|
||||
dependencies.Cache(new TextureStore(new TextureLoaderStore(fileStore.Store), false, scaleAdjust: 1));
|
||||
|
Loading…
Reference in New Issue
Block a user