Skip to content
This repository has been archived by the owner on Aug 26, 2021. It is now read-only.

Commit

Permalink
Fixing the OK button safety checking
Browse files Browse the repository at this point in the history
  • Loading branch information
IS2511 committed Aug 28, 2019
1 parent 8331207 commit ebf12e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -693,7 +693,7 @@ void loop()
lastFrameStart = 0;
frameId++;
}
if ( !(pause && movie[frameId].recorded) )
if ( !(pause && !movie[frameId].recorded) )
pause = !pause;
lcdUpdate();
} else { // Record positions
Expand Down

0 comments on commit ebf12e7

Please sign in to comment.