Skip to content

Commit

Permalink
Bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
RocketRobz committed Sep 6, 2024
1 parent 38e0cc8 commit def7969
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions title/arm9/source/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2682,10 +2682,10 @@ int titleMode(void)
ms().saveSettings();
}

if (!softResetParamsFound && !(*(u32*)0x02000000 & BIT(3)) && ms().dsiSplash && (REG_SCFG_EXT!=0&&ms().consoleModel<2 ? fifoGetValue32(FIFO_USER_04) != 0x01 : !(*(u32*)0x02000000 & BIT(0)))) {
if (!softResetParamsFound && !(*(u32*)0x02000000 & BIT(3)) && ms().dsiSplash && ((REG_SCFG_EXT != 0 && !sys().i2cBricked() && ms().consoleModel < 2) ? fifoGetValue32(FIFO_USER_04) != 0x01 : !(*(u32*)0x02000000 & BIT(0)))) {
runGraphicIrq();
bootSplashInit();
if (REG_SCFG_EXT != 0 && ms().consoleModel < 2) fifoSendValue32(FIFO_USER_04, 10);
if (REG_SCFG_EXT != 0 && !sys().i2cBricked() && ms().consoleModel < 2) fifoSendValue32(FIFO_USER_04, 10);
}
*(u32*)0x02000000 |= BIT(0);

Expand Down

0 comments on commit def7969

Please sign in to comment.