summaryrefslogtreecommitdiff
path: root/engine/battle/decrement_pp.asm
diff options
context:
space:
mode:
authorRangi <remy.oukaour+rangi42@gmail.com>2020-11-05 16:55:39 -0500
committerRangi <remy.oukaour+rangi42@gmail.com>2020-11-05 16:55:39 -0500
commite16dec874a239c162680b169391d3c0c7ee1fc70 (patch)
tree4a18885606996ff59bb714afb5db9a548e2f94a7 /engine/battle/decrement_pp.asm
parent2a4b8b5a248065d2ef80b9960228750112f30da5 (diff)
Sync more with pokeyellow
Diffstat (limited to 'engine/battle/decrement_pp.asm')
-rw-r--r--engine/battle/decrement_pp.asm2
1 files changed, 1 insertions, 1 deletions
diff --git a/engine/battle/decrement_pp.asm b/engine/battle/decrement_pp.asm
index b7c428f7..441bbb81 100644
--- a/engine/battle/decrement_pp.asm
+++ b/engine/battle/decrement_pp.asm
@@ -37,7 +37,7 @@ DecrementPP:
ld a, [wPlayerMoveListIndex] ; which move (0, 1, 2, 3) did we use?
ld c, a
ld b, 0
- add hl ,bc ; calculate the address in memory of the PP we need to decrement
+ add hl, bc ; calculate the address in memory of the PP we need to decrement
; based on the move chosen.
dec [hl] ; Decrement PP
ret