Fix screens not working on firmlaunch

- LCD fill was not unset
- Still needs to do screeninit on firmlaunch even though PDN_GPU_CNT is 0x1007F
This commit is contained in:
TuxSH
2019-02-26 20:19:52 +01:00
parent 1c7b55ee1e
commit f718297591
5 changed files with 38 additions and 20 deletions

View File

@@ -40,6 +40,6 @@ typedef volatile u16 vu16;
typedef volatile u32 vu32;
typedef volatile u64 vu64;
#define PDN_GPU_CNT (*(vu8 *)0x10141200)
#define PDN_GPU_CNT (*(vu32 *)0x10141200)
#define ARESCREENSINITIALIZED (PDN_GPU_CNT != 1)
#define ARESCREENSINITIALIZED ((PDN_GPU_CNT & 0xFF) != 1)