mirror of https://github.com/pret/pokeemerald.git
Oopsie, I forgot to add a diff to better illustrate the modification.
parent
cf50a2ddf1
commit
3e6bab718f
|
@ -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.
|
||||
|
||||
```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.
|
Loading…
Reference in New Issue