diff options
Diffstat (limited to 'apps/plugins/puzzles/rockbox.c')
-rw-r--r-- | apps/plugins/puzzles/rockbox.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/plugins/puzzles/rockbox.c b/apps/plugins/puzzles/rockbox.c index 73f9857b4a..6e34adb1db 100644 --- a/apps/plugins/puzzles/rockbox.c +++ b/apps/plugins/puzzles/rockbox.c | |||
@@ -2459,7 +2459,7 @@ static int list_choose(const char *list_str, const char *title, int sel) | |||
2459 | { | 2459 | { |
2460 | rb->gui_synclist_draw(&list); | 2460 | rb->gui_synclist_draw(&list); |
2461 | int button = rb->get_action(CONTEXT_LIST, TIMEOUT_BLOCK); | 2461 | int button = rb->get_action(CONTEXT_LIST, TIMEOUT_BLOCK); |
2462 | if(rb->gui_synclist_do_button(&list, &button, LIST_WRAP_ON)) | 2462 | if(rb->gui_synclist_do_button(&list, &button, LIST_WRAP_UNLESS_HELD)) |
2463 | continue; | 2463 | continue; |
2464 | switch(button) | 2464 | switch(button) |
2465 | { | 2465 | { |
@@ -2674,7 +2674,7 @@ static bool config_menu(void) | |||
2674 | { | 2674 | { |
2675 | rb->gui_synclist_draw(&list); | 2675 | rb->gui_synclist_draw(&list); |
2676 | int button = rb->get_action(CONTEXT_LIST, TIMEOUT_BLOCK); | 2676 | int button = rb->get_action(CONTEXT_LIST, TIMEOUT_BLOCK); |
2677 | if(rb->gui_synclist_do_button(&list, &button, LIST_WRAP_ON)) | 2677 | if(rb->gui_synclist_do_button(&list, &button, LIST_WRAP_UNLESS_HELD)) |
2678 | continue; | 2678 | continue; |
2679 | switch(button) | 2679 | switch(button) |
2680 | { | 2680 | { |
@@ -2760,7 +2760,7 @@ static int do_preset_menu(struct preset_menu *menu, char *title, int selected) | |||
2760 | { | 2760 | { |
2761 | rb->gui_synclist_draw(&list); | 2761 | rb->gui_synclist_draw(&list); |
2762 | int button = rb->get_action(CONTEXT_LIST, TIMEOUT_BLOCK); | 2762 | int button = rb->get_action(CONTEXT_LIST, TIMEOUT_BLOCK); |
2763 | if(rb->gui_synclist_do_button(&list, &button, LIST_WRAP_ON)) | 2763 | if(rb->gui_synclist_do_button(&list, &button, LIST_WRAP_UNLESS_HELD)) |
2764 | continue; | 2764 | continue; |
2765 | switch(button) | 2765 | switch(button) |
2766 | { | 2766 | { |