diff --git a/minesweeper.c b/minesweeper.c index 981a398..ae735d5 100644 --- a/minesweeper.c +++ b/minesweeper.c @@ -462,6 +462,8 @@ int32_t minesweeper_app(void* p) { // Exit the plugin processing = false; break; + case InputKeyMAX: + break; } } else if (event.input.type == InputTypeLong) { // hold events @@ -479,6 +481,8 @@ int32_t minesweeper_app(void* p) { case InputKeyBack: processing = false; break; + case InputKeyMAX: + break; } } }