mirror of
https://github.com/osukey/osukey.git
synced 2025-07-03 09:20:02 +09:00
Avoid mixing precision across time ramp bindables
Bears no functional difference, it's just a bit less of an eyesore.
This commit is contained in:
@ -57,7 +57,7 @@ namespace osu.Game.Rulesets.Mods
|
||||
FinalRate.BindValueChanged(val =>
|
||||
{
|
||||
if (val.NewValue >= InitialRate.Value)
|
||||
InitialRate.Value = val.NewValue + FinalRate.Precision;
|
||||
InitialRate.Value = val.NewValue + InitialRate.Precision;
|
||||
});
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user