Skip to content

Commit

Permalink
add delay to in-battle move description for instant text
Browse files Browse the repository at this point in the history
  • Loading branch information
itsdarsh committed Feb 20, 2025
1 parent 962d6ce commit 94da546
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions engine/battle/core.asm
Original file line number Diff line number Diff line change
Expand Up @@ -5209,6 +5209,13 @@ MoveSelectionScreen:
call ClearSprites
pop hl
call BattleMoveDescTextbox
assert INST_TEXT == 0
ld a, [wOptions]
and TEXT_DELAY_MASK
jr nz, .no_delay
ld c, 10
call DelayFrames ; 0.333s delay to allow users with autoscroll on start to see the description
.no_delay
call WaitPressAorB_BlinkCursor
jmp .start_over

Expand Down

0 comments on commit 94da546

Please sign in to comment.