clamp msPerBeat in timingpoints between 10 and 1000 like upstream game does (thanks to @McKay42 for the suggestion)
This commit is contained in:
parent
38daee002f
commit
fd8474365d
|
@ -98,7 +98,7 @@ public class TimingPoint {
|
||||||
/**
|
/**
|
||||||
* Returns the slider multiplier. [INHERITED]
|
* Returns the slider multiplier. [INHERITED]
|
||||||
*/
|
*/
|
||||||
public float getSliderMultiplier() { return velocity / -100f; }
|
public float getSliderMultiplier() { return Utils.clamp(-velocity, 10, 1000) / 100f; }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the meter.
|
* Returns the meter.
|
||||||
|
|
Loading…
Reference in New Issue
Block a user