mirror of
https://github.com/ppy/osu.git
synced 2025-01-12 17:23:22 +08:00
Fix logo tracking container being off by one frame
This was especially visible at the main menu when running in single thread mode.
This commit is contained in:
parent
4d4d69521f
commit
882f11bf79
@ -82,9 +82,9 @@ namespace osu.Game.Graphics.Containers
|
|||||||
absolutePos.Y / Logo.Parent!.RelativeToAbsoluteFactor.Y);
|
absolutePos.Y / Logo.Parent!.RelativeToAbsoluteFactor.Y);
|
||||||
}
|
}
|
||||||
|
|
||||||
protected override void Update()
|
protected override void UpdateAfterChildren()
|
||||||
{
|
{
|
||||||
base.Update();
|
base.UpdateAfterChildren();
|
||||||
|
|
||||||
if (Logo == null)
|
if (Logo == null)
|
||||||
return;
|
return;
|
||||||
|
Loading…
Reference in New Issue
Block a user