1
0
Fork 0
forked from len0rd/rockbox

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
This commit is contained in:
Daniel Stenberg 2004-01-08 09:58:58 +00:00
parent fe706d2754
commit 1afa395c2f
18 changed files with 95 additions and 100 deletions

View file

@ -22,7 +22,7 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter)
id3 = rb->mpeg_current_track();
if (!id3) {
rb->splash(HZ*2, 0, true, "Nothing To Save");
rb->splash(HZ*2, true, "Nothing To Save");
return PLUGIN_OK;
}
@ -45,7 +45,7 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter)
rb->close(fd);
}
rb->splash(HZ*2, 0, true, "Saved Favorite");
rb->splash(HZ*2, true, "Saved Favorite");
return PLUGIN_OK;
}