diff options
author | Rangi <35663410+Rangi42@users.noreply.github.com> | 2018-11-10 18:58:49 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-10 18:58:49 -0500 |
commit | ab2f46baefda1eac7d2e71929f17525f2a4a5afd (patch) | |
tree | 676def6dcefdcdd122d5adcc4c84a4fad1aeaa5d /engine | |
parent | 0ce8dd75cd1482a5246e7937b6681bee5fc25bae (diff) | |
parent | b92b91df17038be23552ac9562034a95bd3f78c9 (diff) |
Merge pull request #574 from mid-kid/connections
Make the `connection` macro simpler to use
Diffstat (limited to 'engine')
-rw-r--r-- | engine/overworld/warp_connection.asm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engine/overworld/warp_connection.asm b/engine/overworld/warp_connection.asm index bca8591a5..0f040a624 100644 --- a/engine/overworld/warp_connection.asm +++ b/engine/overworld/warp_connection.asm @@ -18,7 +18,7 @@ InitCommandQueue: EnterMapConnection: ; Return carry if a connection has been entered. ld a, [wPlayerStepDirection] - and a + and a ; DOWN jp z, .south cp UP jp z, .north |