diff options
author | Amber Brault <celestialamber1@gmail.com> | 2021-09-26 22:57:55 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-26 21:57:55 -0500 |
commit | 30acb46b988d4bb54af761696123778acd8517e3 (patch) | |
tree | dd56cb4726f4cc7175e90b475dbe1aba471d533d | |
parent | 2c4f35848b786864822a3f211df91de30a2857c9 (diff) |
Fix typos (#334)
-rw-r--r-- | engine/battle/core.asm | 2 | ||||
-rw-r--r-- | home/vcopy.asm | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/engine/battle/core.asm b/engine/battle/core.asm index 00906cef..d24a43d0 100644 --- a/engine/battle/core.asm +++ b/engine/battle/core.asm @@ -3337,7 +3337,7 @@ CheckPlayerStatusConditions: .HeldInPlaceCheck ld a, [wEnemyBattleStatus1] - bit USING_TRAPPING_MOVE, a ; is enemy using a mult-turn move like wrap? + bit USING_TRAPPING_MOVE, a ; is enemy using a multi-turn move like wrap? jp z, .FlinchedCheck ld hl, CantMoveText call PrintText diff --git a/home/vcopy.asm b/home/vcopy.asm index 504406b9..93c035eb 100644 --- a/home/vcopy.asm +++ b/home/vcopy.asm @@ -127,7 +127,7 @@ AutoBgMapTransfer:: ld a, h ldh [hSPTemp], a ld a, l - ldh [hSPTemp + 1], a ; save stack pinter + ldh [hSPTemp + 1], a ; save stack pointer ldh a, [hAutoBGTransferPortion] and a jr z, .transferTopThird |