Save game and clear board menu cursor position during game menu (#17)

This commit is contained in:
xCrystal
2023-10-07 19:08:54 +02:00
parent da956ed7e4
commit 917db30e98
10 changed files with 13 additions and 13 deletions

View File

@@ -12,7 +12,7 @@ OverworldLoop::
jr nz, .loop
.done
call DisableOverworldHUD
ld hl, wGameTimerPaused
ld hl, wGameTimer
res GAME_TIMER_COUNTING_F, [hl] ; stop game timer counter
ld a, FALSE
ld [wText2bpp], a

View File

@@ -2314,10 +2314,10 @@ Script_endall:
ret
Script_halloffame:
ld hl, wGameTimerPaused
ld hl, wGameTimer
res GAME_TIMER_COUNTING_F, [hl]
farcall HallOfFame
ld hl, wGameTimerPaused
ld hl, wGameTimer
set GAME_TIMER_COUNTING_F, [hl]
jr ReturnFromCredits