Revert unnecessary change

This commit is contained in:
Dean Herbert 2018-07-02 14:27:42 +09:00
parent c04bfb96e1
commit 9a54bf6854
1 changed files with 1 additions and 1 deletions

View File

@ -69,7 +69,7 @@ private bool advanceFrame()
//a button is in a pressed state
IsImportant(currentDirection > 0 ? CurrentFrame : NextFrame) &&
//the next frame is within an allowable time span
Math.Abs(CurrentTime - (NextFrame?.Time ?? 0)) <= sixty_frame_time * 1.2;
Math.Abs(CurrentTime - NextFrame?.Time ?? 0) <= sixty_frame_time * 1.2;
protected virtual bool IsImportant(TFrame frame) => false;