diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2019-04-08 18:50:10 -0400 |
---|---|---|
committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2019-04-08 19:42:55 -0400 |
commit | 2184b60a0cb5e3d1c2b64f7787f3fc0da5efbcab (patch) | |
tree | 473c39b05f00c29e399be8a02b028a11521df813 /docs/bugs_and_glitches.md | |
parent | ec8869584ff7a02ab1ca12fe8b5e6652034f2f17 (diff) |
Identify and eliminate wEngineBuffer1-5
Diffstat (limited to 'docs/bugs_and_glitches.md')
-rw-r--r-- | docs/bugs_and_glitches.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/bugs_and_glitches.md b/docs/bugs_and_glitches.md index 2d2b48fba..8d6ce988d 100644 --- a/docs/bugs_and_glitches.md +++ b/docs/bugs_and_glitches.md @@ -1276,7 +1276,7 @@ Finally, edit [engine/battle/read_trainer_party.asm](https://github.com/pret/pok .CheckWarp: -; Bug: Since no case is made for STANDING here, it will check -; [.edgewarps + $ff]. This resolves to $3e at $8035a. --; This causes wd041 to be nonzero when standing on tile $3e, +-; This causes wWalkingIntoEdgeWarp to be nonzero when standing on tile $3e, -; making bumps silent. - ld a, [wWalkingDirection] @@ -1292,8 +1292,8 @@ Finally, edit [engine/battle/read_trainer_party.asm](https://github.com/pret/pok cp [hl] jr nz, .not_warp - ld a, 1 - ld [wd041], a + ld a, TRUE + ld [wWalkingIntoEdgeWarp], a ld a, [wWalkingDirection] - ; This is in the wrong place. - cp STANDING |