1
0
Fork 0
forked from len0rd/rockbox

replaced all the splash calls by gui_sync_splash, added some missing remote key in the playlist viewer

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7909 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Kevin Ferrare 2005-11-16 15:12:15 +00:00
parent 76b75efa06
commit e991beed6d
21 changed files with 102 additions and 236 deletions

View file

@ -48,6 +48,8 @@
#include "system.h"
#include "sound.h"
#include "database.h"
#include "splash.h"
#if (CONFIG_CODEC == SWCODEC)
#include "pcm_playback.h"
#endif
@ -94,7 +96,7 @@ struct codec_api ci = {
NULL,
NULL,
splash,
gui_syncsplash,
/* file */
(open_func)PREFIX(open),
@ -304,7 +306,7 @@ int codec_load_file(const char *plugin, struct codec_api *api)
if (fd < 0) {
snprintf(msgbuf, sizeof(msgbuf)-1, "Couldn't load codec: %s", plugin);
logf("Codec load error:%d", fd);
splash(HZ*2, true, msgbuf);
gui_syncsplash(HZ*2, true, msgbuf);
return fd;
}