summaryrefslogtreecommitdiff
path: root/apps/onplay.c
diff options
context:
space:
mode:
authorKevin Ferrare <kevin@rockbox.org>2005-11-16 15:12:15 +0000
committerKevin Ferrare <kevin@rockbox.org>2005-11-16 15:12:15 +0000
commite991beed6df8700b41796c4c14ef786f45fb54c5 (patch)
tree63543693276236f18a91c3de87e2353625eb85dc /apps/onplay.c
parent76b75efa060b55bc7cbf66bae3401af57d907440 (diff)
downloadrockbox-e991beed6df8700b41796c4c14ef786f45fb54c5.tar.gz
rockbox-e991beed6df8700b41796c4c14ef786f45fb54c5.zip
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/onplay.c')
-rw-r--r--apps/onplay.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/apps/onplay.c b/apps/onplay.c
index c71a75ac6d..36ea95771a 100644
--- a/apps/onplay.c
+++ b/apps/onplay.c
@@ -48,6 +48,7 @@
48#include "bookmark.h" 48#include "bookmark.h"
49#include "wps.h" 49#include "wps.h"
50#include "action.h" 50#include "action.h"
51#include "splash.h"
51#ifdef HAVE_LCD_BITMAP 52#ifdef HAVE_LCD_BITMAP
52#include "icons.h" 53#include "icons.h"
53#endif 54#endif
@@ -125,7 +126,7 @@ static bool list_viewers(void)
125 } 126 }
126 else 127 else
127 { 128 {
128 splash(HZ*2, true, "No viewers found"); 129 gui_syncsplash(HZ*2, true, "No viewers found");
129 } 130 }
130 131
131 if (ret == PLUGIN_USB_CONNECTED) 132 if (ret == PLUGIN_USB_CONNECTED)
@@ -495,7 +496,7 @@ bool create_dir(void)
495 496
496 rc = mkdir(dirname, 0); 497 rc = mkdir(dirname, 0);
497 if (rc < 0) { 498 if (rc < 0) {
498 splash(HZ, true, "%s %s", str(LANG_CREATE_DIR), str(LANG_FAILED)); 499 gui_syncsplash(HZ, true, "%s %s", str(LANG_CREATE_DIR), str(LANG_FAILED));
499 } else { 500 } else {
500 onplay_result = ONPLAY_RELOAD_DIR; 501 onplay_result = ONPLAY_RELOAD_DIR;
501 } 502 }