1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-14 03:25:11 +08:00

Fix incorrect application logic for rate fallback

Co-Authored-By: peppy <pe@ppy.sh>
This commit is contained in:
Dan Balasescu 2019-03-13 20:55:33 +09:00 committed by GitHub
parent a10cd2288d
commit 5d23a966d7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -72,7 +72,7 @@ namespace osu.Game.Rulesets.Mods
if (clock is IHasPitchAdjust tempo)
tempo.PitchAdjust = baseAdjust * localAdjust;
else
clock.Rate *= baseAdjust * localAdjust;
clock.Rate = baseAdjust * localAdjust;
}
}
}