diff options
author | Daniel Harding <33dannye@gmail.com> | 2020-04-30 12:31:03 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-30 12:31:03 -0500 |
commit | dcff1305fed75506f651d0d4a100fb116770c145 (patch) | |
tree | cc34ce7bf2e8d8fabca8df3dfc8b8f3da1c776c1 | |
parent | 5048f24816e95fc38a708b967648deb86c62a689 (diff) | |
parent | 1682aeb62a4abffa212705fe5aa139f1f8e562ee (diff) |
Merge pull request #234 from Akatsuki-py/fix_comment
Fix comment from Y pos to X pos
-rw-r--r-- | engine/overworld/movement.asm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engine/overworld/movement.asm b/engine/overworld/movement.asm index b561df7d..f272f497 100644 --- a/engine/overworld/movement.asm +++ b/engine/overworld/movement.asm @@ -702,7 +702,7 @@ GetTileSpriteStandsOn: ld c, a ld b, $0 inc l - ld a, [hl] ; c1x6: screen Y position + ld a, [hl] ; c1x6: screen X position srl a srl a srl a ; screen X tile |