Adjust range further

This is not a great idea.
This commit is contained in:
Dean Herbert 2018-03-01 00:39:59 +09:00 committed by GitHub
parent e2f57ae346
commit b8ea4b11ab
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ public class TimingControlPoint : ControlPoint
public double BeatLength
{
get => beatLength;
set => beatLength = MathHelper.Clamp(value, 100, 60000);
set => beatLength = MathHelper.Clamp(value, 6, 60000);
}
private double beatLength = 1000;