summaryrefslogtreecommitdiff
path: root/apps/playlist_viewer.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2004-01-08 09:58:58 +0000
committerDaniel Stenberg <daniel@haxx.se>2004-01-08 09:58:58 +0000
commit1afa395c2fe08ed937dbb0624ade48e46be87efe (patch)
tree621bd3dcf4c1250790f6cf414645d36611684b79 /apps/playlist_viewer.c
parentfe706d2754220794d6a22370424391e146b75c95 (diff)
downloadrockbox-1afa395c2fe08ed937dbb0624ade48e46be87efe.tar.gz
rockbox-1afa395c2fe08ed937dbb0624ade48e46be87efe.zip
The splash() function's second argument (keymask) is now removed, as it
was not used by any code. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4201 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/playlist_viewer.c')
-rw-r--r--apps/playlist_viewer.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/playlist_viewer.c b/apps/playlist_viewer.c
index ee34d3edb6..fe792e9bbb 100644
--- a/apps/playlist_viewer.c
+++ b/apps/playlist_viewer.c
@@ -652,9 +652,9 @@ bool playlist_viewer(void)
652 { 652 {
653 /* Play has stopped */ 653 /* Play has stopped */
654#ifdef HAVE_LCD_CHARCELLS 654#ifdef HAVE_LCD_CHARCELLS
655 splash(HZ, 0, true, str(LANG_END_PLAYLIST_PLAYER)); 655 splash(HZ, true, str(LANG_END_PLAYLIST_PLAYER));
656#else 656#else
657 splash(HZ, 0, true, str(LANG_END_PLAYLIST_RECORDER)); 657 splash(HZ, true, str(LANG_END_PLAYLIST_RECORDER));
658#endif 658#endif
659 status_set_playmode(STATUS_STOP); 659 status_set_playmode(STATUS_STOP);
660 return false;; 660 return false;;
@@ -772,7 +772,7 @@ bool playlist_viewer(void)
772 ret = playlist_move(viewer.move_track, 772 ret = playlist_move(viewer.move_track,
773 tracks[INDEX(viewer.cursor_pos)].index); 773 tracks[INDEX(viewer.cursor_pos)].index);
774 if (ret < 0) 774 if (ret < 0)
775 splash(HZ, 0, true, str(LANG_MOVE_FAILED)); 775 splash(HZ, true, str(LANG_MOVE_FAILED));
776 776
777 update_playlist(true); 777 update_playlist(true);
778 viewer.move_track = -1; 778 viewer.move_track = -1;