summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2003-12-15 11:47:18 +0000
committerDaniel Stenberg <daniel@haxx.se>2003-12-15 11:47:18 +0000
commit8a935f6c4dfcc7f19e0ae647d3265c9cbd1788e7 (patch)
tree7a51b63549b5a94bd3dc645c534215d84878875c /apps
parent7df25eb23cf8867c65048f953e903e5beb50e3d8 (diff)
downloadrockbox-8a935f6c4dfcc7f19e0ae647d3265c9cbd1788e7.zip
rockbox-8a935f6c4dfcc7f19e0ae647d3265c9cbd1788e7.tar.gz
rockbox-8a935f6c4dfcc7f19e0ae647d3265c9cbd1788e7.tar.bz2
rockbox-8a935f6c4dfcc7f19e0ae647d3265c9cbd1788e7.tar.xz
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
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 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)