diff options
-rw-r--r-- | minuitwrp/graphics.cpp | 6 |
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; } |