Fix IsPaused not being bound

This commit is contained in:
smoogipoo 2021-04-14 18:29:34 +09:00
parent 1aa36818df
commit 2935f87e70

View File

@ -50,6 +50,7 @@ namespace osu.Game.Screens.Play
var dependencies = new DependencyContainer(base.CreateChildDependencies(parent));
dependencies.CacheAs(GameplayClock = CreateGameplayClock(AdjustableClock));
GameplayClock.IsPaused.BindTo(IsPaused);
return dependencies;
}