mirror of
https://github.com/osukey/osukey.git
synced 2025-08-03 06:36:31 +09:00
Fix a few naming issues.
This commit is contained in:
@ -121,10 +121,10 @@ namespace osu.Game.Screens.Tournament
|
||||
continue;
|
||||
}
|
||||
|
||||
float offset = Math.Abs(c.Position.X + c.DrawWidth / 2f - DrawWidth / 2f);
|
||||
float o = Math.Abs(c.Position.X + c.DrawWidth / 2f - DrawWidth / 2f);
|
||||
float lastOffset = Math.Abs(closest.Position.X + closest.DrawWidth / 2f - DrawWidth / 2f);
|
||||
|
||||
if (offset < lastOffset)
|
||||
if (o < lastOffset)
|
||||
closest = c;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user