From 1afa395c2fe08ed937dbb0624ade48e46be87efe Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Thu, 8 Jan 2004 09:58:58 +0000 Subject: 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 --- apps/playlist_viewer.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'apps/playlist_viewer.c') 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) { /* Play has stopped */ #ifdef HAVE_LCD_CHARCELLS - splash(HZ, 0, true, str(LANG_END_PLAYLIST_PLAYER)); + splash(HZ, true, str(LANG_END_PLAYLIST_PLAYER)); #else - splash(HZ, 0, true, str(LANG_END_PLAYLIST_RECORDER)); + splash(HZ, true, str(LANG_END_PLAYLIST_RECORDER)); #endif status_set_playmode(STATUS_STOP); return false;; @@ -772,7 +772,7 @@ bool playlist_viewer(void) ret = playlist_move(viewer.move_track, tracks[INDEX(viewer.cursor_pos)].index); if (ret < 0) - splash(HZ, 0, true, str(LANG_MOVE_FAILED)); + splash(HZ, true, str(LANG_MOVE_FAILED)); update_playlist(true); viewer.move_track = -1; -- cgit v1.2.3