diff options
| author | Jonathan Gordon <rockbox@jdgordon.info> | 2009-11-10 04:46:52 +0000 |
|---|---|---|
| committer | Jonathan Gordon <rockbox@jdgordon.info> | 2009-11-10 04:46:52 +0000 |
| commit | 29e28a3945b99ec19703848c8337ea406d99bfd6 (patch) | |
| tree | a168102a7c55a1be32516d50e995adbc2481c2eb /apps/main.c | |
| parent | dd93ef41bb9a75e92b664b97bc34f2bcf17edcde (diff) | |
| download | rockbox-29e28a3945b99ec19703848c8337ea406d99bfd6.zip rockbox-29e28a3945b99ec19703848c8337ea406d99bfd6.tar.gz rockbox-29e28a3945b99ec19703848c8337ea406d99bfd6.tar.bz2 rockbox-29e28a3945b99ec19703848c8337ea406d99bfd6.tar.xz | |
hopefully fix "early usb"
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@23599 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/main.c')
| -rw-r--r-- | apps/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/main.c b/apps/main.c index 1eed068..e5349ae 100644 --- a/apps/main.c +++ b/apps/main.c @@ -496,7 +496,7 @@ static void init(void) (mmc_remove_request() == SYS_HOTSWAP_EXTRACTED)) #endif { - gui_usb_screen_run(); + gui_usb_screen_run(true); mounted = true; /* mounting done @ end of USB mode */ } #ifdef HAVE_USB_POWER @@ -521,7 +521,7 @@ static void init(void) lcd_update(); while(button_get(true) != SYS_USB_CONNECTED) {}; - gui_usb_screen_run(); + gui_usb_screen_run(true); system_reboot(); } } |