summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLOuroboros <lunosouroboros@gmail.com>2021-03-28 17:32:15 +0000
committerLOuroboros <lunosouroboros@gmail.com>2021-03-28 17:32:15 +0000
commit3e6bab718f4ab935f51e0927061e11c636bd1e7f (patch)
tree7e4fbe2a023a116894e86300e73a86f8e7fad51b
parentcf50a2ddf1da4513005d397c6bf6af282d6c7ace (diff)
Oopsie, I forgot to add a diff to better illustrate the modification.
-rw-r--r--Enable-the-Reset-RTC-Feature.md11
1 files changed, 11 insertions, 0 deletions
diff --git a/Enable-the-Reset-RTC-Feature.md b/Enable-the-Reset-RTC-Feature.md
index 45ba29a..5313a7e 100644
--- a/Enable-the-Reset-RTC-Feature.md
+++ b/Enable-the-Reset-RTC-Feature.md
@@ -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. \ No newline at end of file