summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
Diffstat (limited to 'apps')
-rw-r--r--apps/playlist_viewer.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/apps/playlist_viewer.c b/apps/playlist_viewer.c
index 1784d02bba..ee34d3edb6 100644
--- a/apps/playlist_viewer.c
+++ b/apps/playlist_viewer.c
@@ -117,7 +117,9 @@ static void update_display_line(int line, bool scroll);
117static void scroll_display(int lines); 117static void scroll_display(int lines);
118static void update_first_index(void); 118static void update_first_index(void);
119static bool update_playlist(bool force); 119static bool update_playlist(bool force);
120#ifdef BUTTON_ON
120static int onplay_menu(int index); 121static int onplay_menu(int index);
122#endif
121 123
122/* Initialize the playlist viewer */ 124/* Initialize the playlist viewer */
123static bool initialize(void) 125static bool initialize(void)
@@ -563,6 +565,7 @@ static bool update_playlist(bool force)
563 return true; 565 return true;
564} 566}
565 567
568#ifdef BUTTON_ON
566/* Menu of playlist commands. Invoked via ON+PLAY on main viewer screen. 569/* Menu of playlist commands. Invoked via ON+PLAY on main viewer screen.
567 Returns -1 if USB attached, 0 if no playlist change, and 1 if playlist 570 Returns -1 if USB attached, 0 if no playlist change, and 1 if playlist
568 changed. */ 571 changed. */
@@ -622,6 +625,7 @@ static int onplay_menu(int index)
622 625
623 return ret; 626 return ret;
624} 627}
628#endif
625 629
626/* Main viewer function */ 630/* Main viewer function */
627bool playlist_viewer(void) 631bool playlist_viewer(void)