summaryrefslogtreecommitdiff
path: root/apps/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/main.c')
-rw-r--r--apps/main.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/main.c b/apps/main.c
index 8b6c1bbfbe..52b161b500 100644
--- a/apps/main.c
+++ b/apps/main.c
@@ -56,7 +56,7 @@
56#include "playlist.h" 56#include "playlist.h"
57#include "buffer.h" 57#include "buffer.h"
58#include "rolo.h" 58#include "rolo.h"
59#include "screens.h" 59#include "usb_screen.h"
60#include "power.h" 60#include "power.h"
61#include "talk.h" 61#include "talk.h"
62#include "plugin.h" 62#include "plugin.h"
@@ -492,7 +492,7 @@ static void init(void)
492 (mmc_remove_request() == SYS_HOTSWAP_EXTRACTED)) 492 (mmc_remove_request() == SYS_HOTSWAP_EXTRACTED))
493#endif 493#endif
494 { 494 {
495 usb_screen(); 495 gui_usb_screen_run();
496 mounted = true; /* mounting done @ end of USB mode */ 496 mounted = true; /* mounting done @ end of USB mode */
497 } 497 }
498#ifdef HAVE_USB_POWER 498#ifdef HAVE_USB_POWER
@@ -517,7 +517,7 @@ static void init(void)
517 lcd_update(); 517 lcd_update();
518 518
519 while(button_get(true) != SYS_USB_CONNECTED) {}; 519 while(button_get(true) != SYS_USB_CONNECTED) {};
520 usb_screen(); 520 gui_usb_screen_run();
521 system_reboot(); 521 system_reboot();
522 } 522 }
523 } 523 }