mirror of https://github.com/ppy/osu
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 @@ private void applyAdjustment(double adjustment)
|
||||||
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