summaryrefslogtreecommitdiff
path: root/apps/debug_menu.c
diff options
context:
space:
mode:
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 d426356d11..724bab90ab 100644
--- a/apps/debug_menu.c
+++ b/apps/debug_menu.c
@@ -1877,7 +1877,9 @@ static bool dbg_tagcache_info(void)
1877 1877
1878 lcd_clear_display(); 1878 lcd_clear_display();
1879 stat = tagcache_get_stat(); 1879 stat = tagcache_get_stat();
1880 snprintf(buf, sizeof(buf), "Busy: %s", stat->initialized ? "No" : "Yes"); 1880 snprintf(buf, sizeof(buf), "Initialized: %s", stat->initialized ? "Yes" : "No");
1881 lcd_puts(0, line++, buf);
1882 snprintf(buf, sizeof(buf), "DB Ready: %s", stat->ready ? "Yes" : "No");
1881 lcd_puts(0, line++, buf); 1883 lcd_puts(0, line++, buf);
1882 snprintf(buf, sizeof(buf), "RAM Cache: %s", stat->ramcache ? "Yes" : "No"); 1884 snprintf(buf, sizeof(buf), "RAM Cache: %s", stat->ramcache ? "Yes" : "No");
1883 lcd_puts(0, line++, buf); 1885 lcd_puts(0, line++, buf);