diff options
| author | Kevin Ferrare <kevin@rockbox.org> | 2005-11-16 15:12:15 +0000 |
|---|---|---|
| committer | Kevin Ferrare <kevin@rockbox.org> | 2005-11-16 15:12:15 +0000 |
| commit | e991beed6df8700b41796c4c14ef786f45fb54c5 (patch) | |
| tree | 63543693276236f18a91c3de87e2353625eb85dc /apps/dbtree.c | |
| parent | 76b75efa060b55bc7cbf66bae3401af57d907440 (diff) | |
| download | rockbox-e991beed6df8700b41796c4c14ef786f45fb54c5.zip rockbox-e991beed6df8700b41796c4c14ef786f45fb54c5.tar.gz rockbox-e991beed6df8700b41796c4c14ef786f45fb54c5.tar.bz2 rockbox-e991beed6df8700b41796c4c14ef786f45fb54c5.tar.xz | |
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
Diffstat (limited to 'apps/dbtree.c')
| -rw-r--r-- | apps/dbtree.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/apps/dbtree.c b/apps/dbtree.c index 9ea0706..9115c59 100644 --- a/apps/dbtree.c +++ b/apps/dbtree.c @@ -44,6 +44,7 @@ #include "keyboard.h" #include "autoconf.h" #include "list.h" +#include "splash.h" static int db_play_folder(struct tree_context* c); static int db_search(struct tree_context* c, char* string); @@ -130,13 +131,13 @@ int db_load(struct tree_context* c) i = db_search(c, searchstring); c->dirlength = c->filesindir = i; if (c->dirfull) { - splash(HZ, true, "%s %s", + gui_syncsplash(HZ, true, "%s %s", str(LANG_SHOWDIR_ERROR_BUFFER), str(LANG_SHOWDIR_ERROR_FULL)); c->dirfull = false; } else - splash(HZ, true, str(LANG_ID3DB_MATCHES), i); + gui_syncsplash(HZ, true, str(LANG_ID3DB_MATCHES), i); return i; case allsongs: |