Oopsie, I forgot to add a diff to better illustrate the modification.

LOuroboros 2021-03-28 17:32:15 +00:00
parent cf50a2ddf1
commit 3e6bab718f
1 changed files with 11 additions and 0 deletions

@ -6,4 +6,15 @@ So, why don't we just forget about checking for `CanResetRTC`, and simply let th
To do this, we just have to **[go to the L741 of src/title_screen.c](https://github.com/pret/pokeemerald/blob/master/src/title_screen.c#L741)** and remove the `&& CanResetRTC() == TRUE` check. To do this, we just have to **[go to the L741 of src/title_screen.c](https://github.com/pret/pokeemerald/blob/master/src/title_screen.c#L741)** and remove the `&& CanResetRTC() == TRUE` check.
```diff
- else if (JOY_HELD(RESET_RTC_BUTTON_COMBO) == RESET_RTC_BUTTON_COMBO
- && CanResetRTC() == TRUE)
+ else if (JOY_HELD(RESET_RTC_BUTTON_COMBO) == RESET_RTC_BUTTON_COMBO)
{
FadeOutBGM(4);
BeginNormalPaletteFade(PALETTES_ALL, 0, 0, 0x10, RGB_BLACK);
SetMainCallback2(CB2_GoToResetRtcScreen);
}
```
That's it. Save, build a ROM, and press `B + Select + Left Arrow` on the title screen. That's it. Save, build a ROM, and press `B + Select + Left Arrow` on the title screen.