summaryrefslogtreecommitdiff
path: root/apps/plugins/favorites.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/plugins/favorites.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/plugins/favorites.c')
-rw-r--r--apps/plugins/favorites.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/favorites.c b/apps/plugins/favorites.c
index 3ee597e3ef..949eeeae31 100644
--- a/apps/plugins/favorites.c
+++ b/apps/plugins/favorites.c
@@ -22,7 +22,7 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter)
22 22
23 id3 = rb->mpeg_current_track(); 23 id3 = rb->mpeg_current_track();
24 if (!id3) { 24 if (!id3) {
25 rb->splash(HZ*2, 0, true, "Nothing To Save"); 25 rb->splash(HZ*2, true, "Nothing To Save");
26 return PLUGIN_OK; 26 return PLUGIN_OK;
27 } 27 }
28 28
@@ -45,7 +45,7 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter)
45 rb->close(fd); 45 rb->close(fd);
46 } 46 }
47 47
48 rb->splash(HZ*2, 0, true, "Saved Favorite"); 48 rb->splash(HZ*2, true, "Saved Favorite");
49 49
50 return PLUGIN_OK; 50 return PLUGIN_OK;
51} 51}