diff options
author | Remy Oukaour <remy.oukaour@gmail.com> | 2017-12-12 20:15:07 -0500 |
---|---|---|
committer | Remy Oukaour <remy.oukaour@gmail.com> | 2017-12-12 20:15:07 -0500 |
commit | 93c32e35806af6c0a8b731c5322ee5df58c797f9 (patch) | |
tree | 96bf9f46a4dcba56c40710c4a72361f26eb9be6e /items/item_effects.asm | |
parent | f0ab09125493f91d66af836e0abb977459a0d801 (diff) |
Document bugs and glitches
Diffstat (limited to 'items/item_effects.asm')
-rw-r--r-- | items/item_effects.asm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/items/item_effects.asm b/items/item_effects.asm index f830cd22b..562bf873c 100644 --- a/items/item_effects.asm +++ b/items/item_effects.asm @@ -1006,7 +1006,7 @@ LoveBallMultiplier: pop de cp d pop bc - ret nz ; for the intended effect, this should be “ret z” + ret nz ; for the intended effect, this should be "ret z" sla b jr c, .max @@ -1044,7 +1044,7 @@ FastBallMultiplier: cp -1 jr z, .next cp c - jr nz, .next ; for the intended effect, this should be “jr nz, .loop” + jr nz, .next ; for the intended effect, this should be "jr nz, .loop" sla b jr c, .max |