From 80c380e61e7888a118499e68da4dd31f7e858efc Mon Sep 17 00:00:00 2001 From: Michael Scire Date: Thu, 9 May 2019 08:15:12 -0700 Subject: [PATCH] boot: fix missing write in LCD vendor 0xF20 init --- stratosphere/boot/source/boot_display.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/stratosphere/boot/source/boot_display.cpp b/stratosphere/boot/source/boot_display.cpp index 2ab710419..431031c65 100644 --- a/stratosphere/boot/source/boot_display.cpp +++ b/stratosphere/boot/source/boot_display.cpp @@ -363,6 +363,7 @@ void Boot::InitializeDisplay() { WriteRegister(g_dsi_regs + sizeof(u32) * DSI_WR_DATA, 0x9483FFB9); WriteRegister(g_dsi_regs + sizeof(u32) * DSI_TRIGGER, DSI_TRIGGER_HOST); svcSleepThread(5'000'000ul); + WriteRegister(g_dsi_regs + sizeof(u32) * DSI_WR_DATA, 0x739); WriteRegister(g_dsi_regs + sizeof(u32) * DSI_WR_DATA, 0x751548B1); WriteRegister(g_dsi_regs + sizeof(u32) * DSI_WR_DATA, 0x143209); WriteRegister(g_dsi_regs + sizeof(u32) * DSI_TRIGGER, DSI_TRIGGER_HOST);