diff options
Diffstat (limited to 'apps/plugins')
| -rw-r--r-- | apps/plugins/spacerocks.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/spacerocks.c b/apps/plugins/spacerocks.c index 6879ab6..39de40c 100644 --- a/apps/plugins/spacerocks.c +++ b/apps/plugins/spacerocks.c @@ -2017,8 +2017,8 @@ enum plugin_status start_game(void) button = rb->button_get(false); #ifdef HAS_BUTTON_HOLD - if (rb->button_hold()) - game_state = PAUSE_MODE; + if (rb->button_hold() && game_state == PLAY_MODE) + game_state = PAUSE_MODE; #endif switch(button) |