summaryrefslogtreecommitdiff
path: root/apps/onplay.c
diff options
context:
space:
mode:
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 }