From fcbfef81751b1b4e387918c41c38a1f5fe904a9a Mon Sep 17 00:00:00 2001 From: Thomas Martitz Date: Mon, 23 Feb 2009 22:55:48 +0000 Subject: 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 --- apps/debug_menu.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'apps/debug_menu.c') diff --git a/apps/debug_menu.c b/apps/debug_menu.c index 57f525df70..e1d2d2e48f 100644 --- a/apps/debug_menu.c +++ b/apps/debug_menu.c @@ -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(); } -- cgit v1.2.3