diff options
author | Michael Sevakis <jethead71@rockbox.org> | 2007-06-30 02:08:27 +0000 |
---|---|---|
committer | Michael Sevakis <jethead71@rockbox.org> | 2007-06-30 02:08:27 +0000 |
commit | 1167e3c72f5d0d581b81fd2cb8f2580a1524ca5a (patch) | |
tree | 501f9901636d5586271067d0c157204e500a2cfd /apps/main.c | |
parent | 189a5f812f47e43e5704a44c3abb85a4c37c8662 (diff) |
Accept FS#7134 - Sansa: external sd card support by Antonius Hellmann with some tweaks. All testers have given the green light. (Now for the RED ?? ;).
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13741 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/main.c')
-rw-r--r-- | apps/main.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/main.c b/apps/main.c index 3dfab06280..2dd90ef5fe 100644 --- a/apps/main.c +++ b/apps/main.c @@ -430,7 +430,8 @@ static void init(void) /* enter USB mode early, before trying to mount */ if (button_get_w_tmo(HZ/10) == SYS_USB_CONNECTED) #ifdef HAVE_MMC - if (!mmc_touched() || (mmc_remove_request() == SYS_MMC_EXTRACTED)) + if (!mmc_touched() || + (mmc_remove_request() == SYS_HOTSWAP_EXTRACTED)) #endif { usb_screen(); |