summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTao Bao <tbao@google.com>2017-03-01 03:26:45 +0100
committerGerrit Code Review <noreply-gerritcodereview@google.com>2017-03-01 03:26:46 +0100
commitd549616b242ae27b380d26a7d4ee7efc3e0aed02 (patch)
tree1c7b5e5defb42214d0246a29f4ee0954128f6fd5
parentMerge "recovery: Don't show "No /cache partition found" on screen." (diff)
parentrecovery: Remember the last log position. (diff)
downloadandroid_bootable_recovery-d549616b242ae27b380d26a7d4ee7efc3e0aed02.tar
android_bootable_recovery-d549616b242ae27b380d26a7d4ee7efc3e0aed02.tar.gz
android_bootable_recovery-d549616b242ae27b380d26a7d4ee7efc3e0aed02.tar.bz2
android_bootable_recovery-d549616b242ae27b380d26a7d4ee7efc3e0aed02.tar.lz
android_bootable_recovery-d549616b242ae27b380d26a7d4ee7efc3e0aed02.tar.xz
android_bootable_recovery-d549616b242ae27b380d26a7d4ee7efc3e0aed02.tar.zst
android_bootable_recovery-d549616b242ae27b380d26a7d4ee7efc3e0aed02.zip
-rw-r--r--recovery.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/recovery.cpp b/recovery.cpp
index 8c214beb2..5c60ce655 100644
--- a/recovery.cpp
+++ b/recovery.cpp
@@ -972,8 +972,9 @@ static void choose_recovery_file(Device* device) {
const char* headers[] = { "Select file to view", nullptr };
+ int chosen_item = 0;
while (true) {
- int chosen_item = get_menu_selection(headers, entries, 1, 0, device);
+ chosen_item = get_menu_selection(headers, entries, 1, chosen_item, device);
if (strcmp(entries[chosen_item], "Back") == 0) break;
ui->ShowFile(entries[chosen_item]);