From 8a935f6c4dfcc7f19e0ae647d3265c9cbd1788e7 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Mon, 15 Dec 2003 11:47:18 +0000 Subject: Since some code isn't used if no ON button exist, we need to ifdef around them to prevent compiler warning(s). We should make more code use a different key instead of ON for the models that don't have one! git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4154 a1c6a512-1295-4272-9138-f99709370657 --- apps/playlist_viewer.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/apps/playlist_viewer.c b/apps/playlist_viewer.c index 1784d02..ee34d3e 100644 --- a/apps/playlist_viewer.c +++ b/apps/playlist_viewer.c @@ -117,7 +117,9 @@ static void update_display_line(int line, bool scroll); static void scroll_display(int lines); static void update_first_index(void); static bool update_playlist(bool force); +#ifdef BUTTON_ON static int onplay_menu(int index); +#endif /* Initialize the playlist viewer */ static bool initialize(void) @@ -563,6 +565,7 @@ static bool update_playlist(bool force) return true; } +#ifdef BUTTON_ON /* Menu of playlist commands. Invoked via ON+PLAY on main viewer screen. Returns -1 if USB attached, 0 if no playlist change, and 1 if playlist changed. */ @@ -622,6 +625,7 @@ static int onplay_menu(int index) return ret; } +#endif /* Main viewer function */ bool playlist_viewer(void) -- cgit v1.1