diff options
| author | Prakxo <87568477+Prakxo@users.noreply.github.com> | 2023-08-06 19:09:39 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-08-06 14:09:39 -0400 |
| commit | 49676377a38a3dfd2d6a50e885d7fb814e1e377b (patch) | |
| tree | fd59b547426ee3af0c8ae8a57b71f8b8802a48a8 /src/boot | |
| parent | 065751554f2cdf7b5a64b0573e269cbbd1cb6ed3 (diff) | |
irqmgr OK (#28)
* irqmgr OK
* refactor
* refactor 2
* refactor 3
* refactor 5
* refactor 6
* fix yaml
* fix bss
Diffstat (limited to 'src/boot')
| -rw-r--r-- | src/boot/viconfig.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/boot/viconfig.c b/src/boot/viconfig.c index cb58def..c250cd7 100644 --- a/src/boot/viconfig.c +++ b/src/boot/viconfig.c @@ -1,11 +1,12 @@ #include "global.h" #include "idle.h" +#include "irqmgr.h" u8 gViConfigBlackNext; u8 gViConfigBlack; void ViConfig_UpdateVi(u32 black) { - if ((black || (D_8010EFB0_jp == 0)) && ((black != gViConfigBlack) || (black != gViConfigBlackNext))) { + if ((black || (ResetStatus == 0)) && ((black != gViConfigBlack) || (black != gViConfigBlackNext))) { if (black) { if (osTvType == OS_TV_PAL) { osViSetMode(&osViModePalLan1); |
