diff options
author | ElectroDeoxys <ElectroDeoxys@gmail.com> | 2021-05-13 20:12:45 +0100 |
---|---|---|
committer | ElectroDeoxys <ElectroDeoxys@gmail.com> | 2021-05-13 20:12:45 +0100 |
commit | ef5a54d4d18baa51aea8552f184880e3ccd4d423 (patch) | |
tree | d1366c7304f19b15662d64e9b0edc1bd868df401 /src | |
parent | 504f4ad42f82f262bbb85d1471970d20e5957213 (diff) |
Minor documentation fixing
Diffstat (limited to 'src')
-rw-r--r-- | src/engine/bank02.asm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/engine/bank02.asm b/src/engine/bank02.asm index b36bfaf..9afbaed 100644 --- a/src/engine/bank02.asm +++ b/src/engine/bank02.asm @@ -3360,7 +3360,7 @@ HandleDeckBuildScreen: ; 9345 (2:5345) ld hl, wNumVisibleCardListEntries cp [hl] jr nc, .ok - ; if total number of entries is greater or equal than + ; if total number of entries is greater than or equal to ; the number of visible entries, then set number of cursor positions ; as number of visible entries ld [wCardListNumCursorPositions], a @@ -5316,9 +5316,9 @@ RemoveCardFromDeck: ; 9dfa (2:5dfa) ; and shift all elements up by one .RemoveCard ld hl, wCurDeckCards - ld d, 0 + ld d, 0 ; unnecessary .loop_1 - inc d + inc d ; unnecessary ld a, [hli] cp e jr nz, .loop_1 |