Skip to content

Commit

Permalink
bocaberticePura
Browse files Browse the repository at this point in the history
  • Loading branch information
bmorcelli authored Nov 15, 2024
1 parent c70932f commit aaa3233
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/core/mykeyboard.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ bool _checkPrevPagePress() { return false; }
** Jumps 5 items from file list
**********************************************************************/
bool checkNextPagePress(){
if(_checkNextPagePress)
if(_checkNextPagePress())
{
if(wakeUpScreen()){
delay(200);
Expand All @@ -179,7 +179,7 @@ bool checkNextPagePress(){
** Jumps -5 items from file list
**********************************************************************/
bool checkPrevPagePress() {
if(_checkPrevPagePress)
if(_checkPrevPagePress())
{
if(wakeUpScreen()){
delay(200);
Expand Down

0 comments on commit aaa3233

Please sign in to comment.