mirror of
https://github.com/ppy/osu.git
synced 2025-01-12 16:43:00 +08:00
Fix relative position being compared to time
This commit is contained in:
parent
bb8171b88a
commit
a26e237e26
@ -71,7 +71,7 @@ namespace osu.Game.Rulesets.Catch.Mods
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (Math.Abs(diff) < timeDiff / 3d)
|
if (Math.Abs(diff * CatchPlayfield.BASE_WIDTH) < timeDiff / 3d)
|
||||||
{
|
{
|
||||||
if (diff > 0)
|
if (diff > 0)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user