1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-30 05:59:53 +08:00

Fix incorrect code migration

Co-Authored-By: Bartłomiej Dach <dach.bartlomiej@gmail.com>
This commit is contained in:
Dean Herbert
2019-12-10 02:23:17 +09:00
committed by GitHub
Unverified
parent d650bfb6d6
commit dc9775742c
+1 -1
View File
@@ -59,7 +59,7 @@ namespace osu.Game.Rulesets.Mods
double adjust = 1 + (Math.Sign(FinalRateAdjustment) * Math.Clamp(amount, 0, 1) * Math.Abs(FinalRateAdjustment));
track.Tempo.Value /= lastAdjust;
track.Tempo.Value *= lastAdjust;
track.Tempo.Value *= adjust;
lastAdjust = adjust;
}