summaryrefslogtreecommitdiff
path: root/apps/dbtree.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/dbtree.c')
-rw-r--r--apps/dbtree.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/apps/dbtree.c b/apps/dbtree.c
index 9ea0706245..9115c5902c 100644
--- a/apps/dbtree.c
+++ b/apps/dbtree.c
@@ -44,6 +44,7 @@
44#include "keyboard.h" 44#include "keyboard.h"
45#include "autoconf.h" 45#include "autoconf.h"
46#include "list.h" 46#include "list.h"
47#include "splash.h"
47 48
48static int db_play_folder(struct tree_context* c); 49static int db_play_folder(struct tree_context* c);
49static int db_search(struct tree_context* c, char* string); 50static int db_search(struct tree_context* c, char* string);
@@ -130,13 +131,13 @@ int db_load(struct tree_context* c)
130 i = db_search(c, searchstring); 131 i = db_search(c, searchstring);
131 c->dirlength = c->filesindir = i; 132 c->dirlength = c->filesindir = i;
132 if (c->dirfull) { 133 if (c->dirfull) {
133 splash(HZ, true, "%s %s", 134 gui_syncsplash(HZ, true, "%s %s",
134 str(LANG_SHOWDIR_ERROR_BUFFER), 135 str(LANG_SHOWDIR_ERROR_BUFFER),
135 str(LANG_SHOWDIR_ERROR_FULL)); 136 str(LANG_SHOWDIR_ERROR_FULL));
136 c->dirfull = false; 137 c->dirfull = false;
137 } 138 }
138 else 139 else
139 splash(HZ, true, str(LANG_ID3DB_MATCHES), i); 140 gui_syncsplash(HZ, true, str(LANG_ID3DB_MATCHES), i);
140 return i; 141 return i;
141 142
142 case allsongs: 143 case allsongs: