1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 07:42:57 +08:00

Revert incorrect removal default value (causing a new warning)

This commit is contained in:
Dean Herbert 2022-10-29 18:09:27 +09:00
parent a985151e31
commit 8c9250285f

View File

@ -79,8 +79,9 @@ namespace osu.Game.Rulesets.Osu.Objects.Drawables
public override void ApplyTransformsAt(double time, bool propagateChildren = false)
{
// For the same reasons as above w.r.t rewinding, we shouldn't propagate to children here either.
// ReSharper disable once RedundantArgumentDefaultValue - removing the "redundant" default value triggers BaseMethodCallWithDefaultParameter
base.ApplyTransformsAt(time);
// ReSharper disable once RedundantArgumentDefaultValue
base.ApplyTransformsAt(time, false);
}
private bool tracking;