diff options
Diffstat (limited to '')
-rw-r--r-- | minuitwrp/graphics.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/minuitwrp/graphics.c b/minuitwrp/graphics.c index 11446409c..79b1e9aa5 100644 --- a/minuitwrp/graphics.c +++ b/minuitwrp/graphics.c @@ -789,8 +789,11 @@ int gr_init(void) gl->enable(gl, GGL_BLEND); gl->blendFunc(gl, GGL_SRC_ALPHA, GGL_ONE_MINUS_SRC_ALPHA); -// gr_fb_blank(true); -// gr_fb_blank(false); +#ifdef TW_SCREEN_BLANK_ON_BOOT + printf("TW_SCREEN_BLANK_ON_BOOT := true\n"); + gr_fb_blank(true); + gr_fb_blank(false); +#endif if (!alloc_ion_mem(fi.line_length * vi.yres)) allocate_overlay(gr_fb_fd, gr_framebuffer); |