mirror of
https://github.com/ppy/osu.git
synced 2025-01-14 19:22:56 +08:00
Fix incorrect application logic for rate fallback
Co-Authored-By: peppy <pe@ppy.sh>
This commit is contained in:
parent
a10cd2288d
commit
5d23a966d7
@ -72,7 +72,7 @@ namespace osu.Game.Rulesets.Mods
|
|||||||
if (clock is IHasPitchAdjust tempo)
|
if (clock is IHasPitchAdjust tempo)
|
||||||
tempo.PitchAdjust = baseAdjust * localAdjust;
|
tempo.PitchAdjust = baseAdjust * localAdjust;
|
||||||
else
|
else
|
||||||
clock.Rate *= baseAdjust * localAdjust;
|
clock.Rate = baseAdjust * localAdjust;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user