diff options
| author | Jörg Hohensohn <hohensoh@rockbox.org> | 2004-12-29 22:37:31 +0000 |
|---|---|---|
| committer | Jörg Hohensohn <hohensoh@rockbox.org> | 2004-12-29 22:37:31 +0000 |
| commit | 575c9049f6bbcb3b5c8d4b51aeec9cc95d9fdf13 (patch) | |
| tree | 768b87ced00944e35ccac3b706493b3bcc9d641d /apps | |
| parent | 7ee03d04936fb161903b2c15d598d7a1588968a3 (diff) | |
| download | rockbox-575c9049f6bbcb3b5c8d4b51aeec9cc95d9fdf13.zip rockbox-575c9049f6bbcb3b5c8d4b51aeec9cc95d9fdf13.tar.gz rockbox-575c9049f6bbcb3b5c8d4b51aeec9cc95d9fdf13.tar.bz2 rockbox-575c9049f6bbcb3b5c8d4b51aeec9cc95d9fdf13.tar.xz | |
behave for multi-volume
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5520 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
| -rw-r--r-- | apps/debug_menu.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/debug_menu.c b/apps/debug_menu.c index 880f545..67eb287 100644 --- a/apps/debug_menu.c +++ b/apps/debug_menu.c @@ -1455,7 +1455,7 @@ static bool dbg_disk_info(void) case 3: { unsigned int free; - fat_size( NULL, &free ); + fat_size( IF_MV2(0,) NULL, &free ); snprintf(buf, sizeof buf, "%d MB", free / 1024 ); lcd_puts(0, y++, "Free"); lcd_puts(0, y++, buf); @@ -1530,7 +1530,7 @@ static bool dbg_disk_info(void) case 11: lcd_puts(0, y++, "Cluster size"); - snprintf(buf, 128, "%d bytes", fat_get_cluster_size()); + snprintf(buf, 128, "%d bytes", fat_get_cluster_size(IF_MV(0))); lcd_puts(0, y++, buf); break; } @@ -1560,7 +1560,7 @@ static bool dbg_disk_info(void) lcd_puts(0,0,"Scanning"); lcd_puts(0,1,"disk..."); lcd_update(); - fat_recalc_free(); + fat_recalc_free(IF_MV(0)); } break; } |