1
0
Fork 0
forked from len0rd/rockbox

Show the watermark in the "Show buffering thread" screen (in bytes).

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@20096 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Thomas Martitz 2009-02-23 22:55:48 +00:00
parent 25b4334654
commit fcbfef8175
3 changed files with 5 additions and 1 deletions

View file

@ -392,6 +392,9 @@ static bool dbg_buffering_thread(void)
snprintf(buf, sizeof(buf), "pcmbufdesc: %2d/%2d",
pcmbuf_used_descs(), pcmbufdescs);
lcd_puts(0, line++, buf);
snprintf(buf, sizeof(buf), "watermark: %6d",
(int)(d.watermark));
lcd_puts(0, line++, buf);
lcd_update();
}