summaryrefslogtreecommitdiff
path: root/apps/debug_menu.c
diff options
context:
space:
mode:
authorMiika Pekkarinen <miipekk@ihme.org>2006-07-20 12:19:31 +0000
committerMiika Pekkarinen <miipekk@ihme.org>2006-07-20 12:19:31 +0000
commitcb8c79541504ce8a4e1d4243ccec826707e30544 (patch)
tree66c065035b31fc480db2fe3e83daf1672829a87a /apps/debug_menu.c
parent7b5af8c045d1db6e805981e1c6d1b32de200e3f3 (diff)
downloadrockbox-cb8c79541504ce8a4e1d4243ccec826707e30544.zip
rockbox-cb8c79541504ce8a4e1d4243ccec826707e30544.tar.gz
rockbox-cb8c79541504ce8a4e1d4243ccec826707e30544.tar.bz2
rockbox-cb8c79541504ce8a4e1d4243ccec826707e30544.tar.xz
Support importing runtimedb data from ascii files.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10260 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/debug_menu.c')
-rw-r--r--apps/debug_menu.c4
1 files changed, 3 insertions, 1 deletions
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);