summaryrefslogtreecommitdiff
path: root/apps/plugins/mpegplayer/mpeg_misc.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/mpegplayer/mpeg_misc.c')
-rw-r--r--apps/plugins/mpegplayer/mpeg_misc.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/apps/plugins/mpegplayer/mpeg_misc.c b/apps/plugins/mpegplayer/mpeg_misc.c
index 7b73c7c376..c85285f4f8 100644
--- a/apps/plugins/mpegplayer/mpeg_misc.c
+++ b/apps/plugins/mpegplayer/mpeg_misc.c
@@ -183,8 +183,11 @@ long mpeg_sysevent(void)
183 return mpeg_sysevent_id; 183 return mpeg_sysevent_id;
184} 184}
185 185
186int mpeg_sysevent_callback(int btn, const struct menu_item_ex *menu) 186int mpeg_sysevent_callback(int btn,
187 const struct menu_item_ex *menu,
188 struct gui_synclist *this_list)
187{ 189{
190 (void) this_list;
188 switch (btn) 191 switch (btn)
189 { 192 {
190 case SYS_USB_CONNECTED: 193 case SYS_USB_CONNECTED:
@@ -218,6 +221,6 @@ int mpeg_button_get(int timeout)
218 /* Produce keyclick */ 221 /* Produce keyclick */
219 rb->keyclick_click(true, button); 222 rb->keyclick_click(true, button);
220 223
221 return mpeg_sysevent_callback(button, NULL); 224 return mpeg_sysevent_callback(button, NULL, NULL);
222} 225}
223 226