1
0
Fork 0
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:
Jens Arnold 2005-05-27 21:47:50 +00:00
parent ef32881e96
commit 8ca1831a5e

View file

@ -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 */