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 | |
parent | ec8869584ff7a02ab1ca12fe8b5e6652034f2f17 (diff) |
Identify and eliminate wEngineBuffer1-5
Diffstat (limited to 'docs')
-rw-r--r-- | docs/bugs_and_glitches.md | 6 | ||||
-rw-r--r-- | docs/event_commands.md | 2 |
2 files changed, 4 insertions, 4 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 diff --git a/docs/event_commands.md b/docs/event_commands.md index f1fa9ecb5..0a114154f 100644 --- a/docs/event_commands.md +++ b/docs/event_commands.md @@ -489,7 +489,7 @@ If <code><i>item_id</i></code> = `USE_SCRIPT_VAR`, then it uses `[wScriptVar]` i ## `$93`: `endall` -## `$94`: <code>pokemart <i>dialog_id</i>, <i>mart_id</i></code> +## `$94`: <code>pokemart <i>mart_type</i>, <i>mart_id</i></code> ## `$95`: <code>elevator <i>floor_list</i></code> |