Added cluster size to the disk debug screen

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4469 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Linus Nielsen Feltzing 2004-04-06 00:17:02 +00:00
parent d4241b0f62
commit ef1698e648
3 changed files with 13 additions and 1 deletions

View file

@ -1989,3 +1989,8 @@ int fat_getnext(struct fat_dir *dir, struct fat_direntry *entry)
}
return 0;
}
int fat_get_cluster_size(void)
{
return fat_bpb.bpb_secperclus * SECTOR_SIZE;
}