diff options
author | Tao Bao <tbao@google.com> | 2015-09-12 03:15:45 +0200 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2015-09-12 03:15:45 +0200 |
commit | 605241984cc41f62e2f2e005865d7afed504a972 (patch) | |
tree | e1fc8d5073c8b3b432104aa6d9b91f836c622e2a /screen_ui.cpp | |
parent | am 7a677807: Merge "updater: Fix the line breaks in ui_print commands." (diff) | |
parent | Merge "recovery: Remove redirect_stdio() when calling ShowFile()." (diff) | |
download | android_bootable_recovery-605241984cc41f62e2f2e005865d7afed504a972.tar android_bootable_recovery-605241984cc41f62e2f2e005865d7afed504a972.tar.gz android_bootable_recovery-605241984cc41f62e2f2e005865d7afed504a972.tar.bz2 android_bootable_recovery-605241984cc41f62e2f2e005865d7afed504a972.tar.lz android_bootable_recovery-605241984cc41f62e2f2e005865d7afed504a972.tar.xz android_bootable_recovery-605241984cc41f62e2f2e005865d7afed504a972.tar.zst android_bootable_recovery-605241984cc41f62e2f2e005865d7afed504a972.zip |
Diffstat (limited to 'screen_ui.cpp')
-rw-r--r-- | screen_ui.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/screen_ui.cpp b/screen_ui.cpp index ddf85c19e..f2fda2fb5 100644 --- a/screen_ui.cpp +++ b/screen_ui.cpp @@ -581,7 +581,7 @@ void ScreenRecoveryUI::ShowFile(FILE* fp) { bool show_prompt = false; while (true) { if (show_prompt) { - Print("--(%d%% of %d bytes)--", + PrintOnScreenOnly("--(%d%% of %d bytes)--", static_cast<int>(100 * (double(ftell(fp)) / double(sb.st_size))), static_cast<int>(sb.st_size)); Redraw(); |