diff options
| author | Linus Nielsen Feltzing <linus@haxx.se> | 2002-07-15 18:52:35 +0000 |
|---|---|---|
| committer | Linus Nielsen Feltzing <linus@haxx.se> | 2002-07-15 18:52:35 +0000 |
| commit | 693a9db2a9082613644333d2571aa9c5fb22b392 (patch) | |
| tree | b8abba3c24c0b9dcfb957f359e20aa55e2b6500f | |
| parent | de943a5bd16746efb8feaa92cce266f80994747c (diff) | |
| download | rockbox-693a9db2a9082613644333d2571aa9c5fb22b392.zip rockbox-693a9db2a9082613644333d2571aa9c5fb22b392.tar.gz rockbox-693a9db2a9082613644333d2571aa9c5fb22b392.tar.bz2 rockbox-693a9db2a9082613644333d2571aa9c5fb22b392.tar.xz | |
The partition search now stops when it finds a FAT32 partition
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1352 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | apps/main.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/main.c b/apps/main.c index 36a3f4e..79feacf 100644 --- a/apps/main.c +++ b/apps/main.c @@ -130,6 +130,7 @@ void init(void) rc = fat_mount(pinfo[i].start); if(rc) panicf("mount: %d",rc); + break; } } if ( i==4 ) { |