forked from len0rd/rockbox
Adjusted MMC debug info.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6530 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
ef32881e96
commit
8ca1831a5e
1 changed files with 2 additions and 2 deletions
|
@ -1673,9 +1673,9 @@ bool dbg_mmc_info(void)
|
|||
(int) mmc_extract_bits(card->cid, 0, 8),
|
||||
(int) mmc_extract_bits(card->cid, 8, 16));
|
||||
lcd_puts(0, 4, pbuf);
|
||||
snprintf(pbuf, sizeof(pbuf), "Blocks: %08lx", card->numblocks);
|
||||
snprintf(pbuf, sizeof(pbuf), "Blocks: 0x%06lx", card->numblocks);
|
||||
lcd_puts(0, 5, pbuf);
|
||||
snprintf(pbuf, sizeof(pbuf), "Blocksize: %d", card->blocksize);
|
||||
snprintf(pbuf, sizeof(pbuf), "Blksz.: %d", card->blocksize);
|
||||
lcd_puts(0, 6, pbuf);
|
||||
}
|
||||
else /* Technical details */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue