aboutsummaryrefslogtreecommitdiffstats
path: root/recovery_ui.h
diff options
context:
space:
mode:
authorKoushik Dutta <koushd@gmail.com>2012-07-17 21:49:23 -0700
committerKoushik Dutta <koushd@gmail.com>2012-07-17 21:51:41 -0700
commit92095766c2b9a59e05b42d153f6cca26774824f1 (patch)
treee37b1c67784faeabfea4da370fd775aff2754305 /recovery_ui.h
parent382525c2ba8cb91933644cdf1f6703fa279388dd (diff)
downloadbootable_recovery-92095766c2b9a59e05b42d153f6cca26774824f1.zip
bootable_recovery-92095766c2b9a59e05b42d153f6cca26774824f1.tar.gz
bootable_recovery-92095766c2b9a59e05b42d153f6cca26774824f1.tar.bz2
fix a bunch of off by one errors. disable display toggle.
Change-Id: Ie34a787188f7df5ab46573bba50dd593bc728514
Diffstat (limited to 'recovery_ui.h')
-rw-r--r--recovery_ui.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/recovery_ui.h b/recovery_ui.h
index 1090efc..c211351 100644
--- a/recovery_ui.h
+++ b/recovery_ui.h
@@ -91,7 +91,7 @@ extern char* MENU_HEADERS[];
extern char* MENU_ITEMS[];
// Loosely track the depth of the current menu
-int ui_menu_level;
+extern int ui_root_menu;
int
get_menu_selection(char** headers, char** items, int menu_only, int initial_selection);