summaryrefslogtreecommitdiffstats
path: root/recovery.cpp
diff options
context:
space:
mode:
authorTao Bao <tbao@google.com>2017-01-03 19:15:33 +0100
committerTao Bao <tbao@google.com>2017-01-04 07:40:03 +0100
commit736d59c56754b86135d9156208645b8b1814fba1 (patch)
treeb34e26851aaea9d8958f818d32c7d0e15196fa27 /recovery.cpp
parentMerge "Remove outdated reference to icon_installing.png" (diff)
downloadandroid_bootable_recovery-736d59c56754b86135d9156208645b8b1814fba1.tar
android_bootable_recovery-736d59c56754b86135d9156208645b8b1814fba1.tar.gz
android_bootable_recovery-736d59c56754b86135d9156208645b8b1814fba1.tar.bz2
android_bootable_recovery-736d59c56754b86135d9156208645b8b1814fba1.tar.lz
android_bootable_recovery-736d59c56754b86135d9156208645b8b1814fba1.tar.xz
android_bootable_recovery-736d59c56754b86135d9156208645b8b1814fba1.tar.zst
android_bootable_recovery-736d59c56754b86135d9156208645b8b1814fba1.zip
Diffstat (limited to 'recovery.cpp')
-rw-r--r--recovery.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/recovery.cpp b/recovery.cpp
index b7aeaee1f..5888c542a 100644
--- a/recovery.cpp
+++ b/recovery.cpp
@@ -1506,11 +1506,10 @@ int main(int argc, char **argv) {
Device* device = make_device();
ui = device->GetUI();
- if (!ui->Init()) {
+ if (!ui->Init(locale)) {
printf("Failed to initialize UI, use stub UI instead.");
ui = new StubRecoveryUI();
}
- ui->SetLocale(locale.c_str());
// Set background string to "installing security update" for security update,
// otherwise set it to "installing system update".
ui->SetSystemUpdateText(security_update);