From cb8c79541504ce8a4e1d4243ccec826707e30544 Mon Sep 17 00:00:00 2001 From: Miika Pekkarinen Date: Thu, 20 Jul 2006 12:19:31 +0000 Subject: Support importing runtimedb data from ascii files. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10260 a1c6a512-1295-4272-9138-f99709370657 --- apps/debug_menu.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'apps/debug_menu.c') diff --git a/apps/debug_menu.c b/apps/debug_menu.c index d426356..724bab9 100644 --- a/apps/debug_menu.c +++ b/apps/debug_menu.c @@ -1877,7 +1877,9 @@ static bool dbg_tagcache_info(void) lcd_clear_display(); stat = tagcache_get_stat(); - snprintf(buf, sizeof(buf), "Busy: %s", stat->initialized ? "No" : "Yes"); + snprintf(buf, sizeof(buf), "Initialized: %s", stat->initialized ? "Yes" : "No"); + lcd_puts(0, line++, buf); + snprintf(buf, sizeof(buf), "DB Ready: %s", stat->ready ? "Yes" : "No"); lcd_puts(0, line++, buf); snprintf(buf, sizeof(buf), "RAM Cache: %s", stat->ramcache ? "Yes" : "No"); lcd_puts(0, line++, buf); -- cgit v1.1