1
0
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:
Dean Herbert 2024-02-18 23:19:57 +08:00
parent 4d4d69521f
commit 882f11bf79
No known key found for this signature in database

View File

@ -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;