summaryrefslogtreecommitdiff
path: root/apps/debug_menu.c
diff options
context:
space:
mode:
authorJonathan Gordon <rockbox@jdgordon.info>2007-01-24 02:19:22 +0000
committerJonathan Gordon <rockbox@jdgordon.info>2007-01-24 02:19:22 +0000
commit228d62dd18906eaef814ec63cf888b30a94cd1c8 (patch)
treea15e27e0e52222e4514e2b163e726869b33b5397 /apps/debug_menu.c
parentcdcffd988372606abea31fad4a815f0b4968b21c (diff)
downloadrockbox-228d62dd18906eaef814ec63cf888b30a94cd1c8.tar.gz
rockbox-228d62dd18906eaef814ec63cf888b30a94cd1c8.zip
Split the system status variables out of global_settings and put them into a new struct global_status. Use status_save() if these need
saving. Added car_adapter_mode to the nvram settings, so nvram settings will be reset. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12101 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/debug_menu.c')
-rw-r--r--apps/debug_menu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/debug_menu.c b/apps/debug_menu.c
index 22db43d272..c5240d0de8 100644
--- a/apps/debug_menu.c
+++ b/apps/debug_menu.c
@@ -1830,7 +1830,7 @@ static bool dbg_dircache_info(void)
1830 lcd_puts(0, line++, buf); 1830 lcd_puts(0, line++, buf);
1831 1831
1832 snprintf(buf, sizeof(buf), "Last size: %d B", 1832 snprintf(buf, sizeof(buf), "Last size: %d B",
1833 global_settings.dircache_size); 1833 global_status.dircache_size);
1834 lcd_puts(0, line++, buf); 1834 lcd_puts(0, line++, buf);
1835 1835
1836 snprintf(buf, sizeof(buf), "Limit: %d B", DIRCACHE_LIMIT); 1836 snprintf(buf, sizeof(buf), "Limit: %d B", DIRCACHE_LIMIT);