summaryrefslogtreecommitdiff
path: root/apps/screens.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/screens.c')
-rw-r--r--apps/screens.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/screens.c b/apps/screens.c
index ee804b2f9b..b725beaa7a 100644
--- a/apps/screens.c
+++ b/apps/screens.c
@@ -1282,7 +1282,7 @@ bool browse_id3(void)
1282 gui_syncstatusbar_draw(&statusbars, false); 1282 gui_syncstatusbar_draw(&statusbars, false);
1283 key = get_action(CONTEXT_LIST,HZ/2); 1283 key = get_action(CONTEXT_LIST,HZ/2);
1284 if(key!=ACTION_NONE && key!=ACTION_UNKNOWN 1284 if(key!=ACTION_NONE && key!=ACTION_UNKNOWN
1285 && !gui_synclist_do_button(&id3_lists, key,LIST_WRAP_UNLESS_HELD)) 1285 && !gui_synclist_do_button(&id3_lists, &key,LIST_WRAP_UNLESS_HELD))
1286 { 1286 {
1287 return(default_event_handler(key) == SYS_USB_CONNECTED); 1287 return(default_event_handler(key) == SYS_USB_CONNECTED);
1288 } 1288 }
@@ -1342,7 +1342,7 @@ bool view_runtime(void)
1342 gui_synclist_draw(&lists); 1342 gui_synclist_draw(&lists);
1343 gui_syncstatusbar_draw(&statusbars, true); 1343 gui_syncstatusbar_draw(&statusbars, true);
1344 action = get_action(CONTEXT_STD, HZ); 1344 action = get_action(CONTEXT_STD, HZ);
1345 gui_synclist_do_button(&lists, action, LIST_WRAP_UNLESS_HELD); 1345 gui_synclist_do_button(&lists, &action, LIST_WRAP_UNLESS_HELD);
1346 if(action == ACTION_STD_CANCEL) 1346 if(action == ACTION_STD_CANCEL)
1347 break; 1347 break;
1348 if(action == ACTION_STD_OK) { 1348 if(action == ACTION_STD_OK) {