From 3e6bab718f4ab935f51e0927061e11c636bd1e7f Mon Sep 17 00:00:00 2001 From: LOuroboros Date: Sun, 28 Mar 2021 17:32:15 +0000 Subject: [PATCH] Oopsie, I forgot to add a diff to better illustrate the modification. --- Enable-the-Reset-RTC-Feature.md | 11 +++++++++++ 1 file changed, 11 insertions(+) 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