Fix using invalid constant

This commit is contained in:
Desconocidosmh 2019-08-17 00:18:25 +02:00
parent 7de1757aae
commit 0f9706e798
1 changed files with 1 additions and 1 deletions

View File

@ -86,7 +86,7 @@ private IEnumerable<IActionPoint> generateActionPoints()
double endTime = (currentObject as IHasEndTime)?.EndTime ?? currentObject.StartTime;
bool canDelayKeyUp = nextObjectInTheSameColumn == null ||
nextObjectInTheSameColumn.StartTime > endTime + KEY_UP_DELAY;
nextObjectInTheSameColumn.StartTime > endTime + RELEASE_DELAY;
double calculatedDelay = canDelayKeyUp ? RELEASE_DELAY : (nextObjectInTheSameColumn.StartTime - endTime) * 0.9;