summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
author¨Paul <¨paul@modaco.com¨>2016-04-26 17:49:58 +0200
committerDees Troy <dees_troy@teamw.in>2016-04-28 18:02:53 +0200
commit80bd165150bf2bfc21ce883ccba6d95ed16e082d (patch)
treeb5e2f97de28a897da55d9d9db2b086f1c0dabe63
parentFix decrypt of odd number length PIN on hardware crypto (diff)
downloadandroid_bootable_recovery-80bd165150bf2bfc21ce883ccba6d95ed16e082d.tar
android_bootable_recovery-80bd165150bf2bfc21ce883ccba6d95ed16e082d.tar.gz
android_bootable_recovery-80bd165150bf2bfc21ce883ccba6d95ed16e082d.tar.bz2
android_bootable_recovery-80bd165150bf2bfc21ce883ccba6d95ed16e082d.tar.lz
android_bootable_recovery-80bd165150bf2bfc21ce883ccba6d95ed16e082d.tar.xz
android_bootable_recovery-80bd165150bf2bfc21ce883ccba6d95ed16e082d.tar.zst
android_bootable_recovery-80bd165150bf2bfc21ce883ccba6d95ed16e082d.zip
-rw-r--r--minuitwrp/graphics.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/minuitwrp/graphics.cpp b/minuitwrp/graphics.cpp
index 47325d01e..c8ea5cb73 100644
--- a/minuitwrp/graphics.cpp
+++ b/minuitwrp/graphics.cpp
@@ -360,6 +360,12 @@ int gr_init(void)
gr_flip();
gr_flip();
+#ifdef TW_SCREEN_BLANK_ON_BOOT
+ printf("TW_SCREEN_BLANK_ON_BOOT := true\n");
+ gr_fb_blank(true);
+ gr_fb_blank(false);
+#endif
+
return 0;
}