diff options
author | luckytyphlosion <10688458+luckytyphlosion@users.noreply.github.com> | 2018-01-23 17:39:09 -0500 |
---|---|---|
committer | luckytyphlosion <10688458+luckytyphlosion@users.noreply.github.com> | 2018-01-23 17:39:09 -0500 |
commit | a1951cefc09035e11077a433b28ec8c66b3b03db (patch) | |
tree | 4de98db5a6edb6d74192028d50893da2b764421f /engine/movement.asm | |
parent | 79bd48f85c7dd1868264e290b12dad17a6e25b95 (diff) |
Prefix wram labels with w, part 2.
Diffstat (limited to 'engine/movement.asm')
-rw-r--r-- | engine/movement.asm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/engine/movement.asm b/engine/movement.asm index 3ba48d60d..a701ff6f9 100644 --- a/engine/movement.asm +++ b/engine/movement.asm @@ -215,7 +215,7 @@ Movement_step_end: ; 51c1 add hl, bc ld [hl], $0 - ld hl, VramState + ld hl, wVramState res 7, [hl] ld hl, OBJECT_STEP_TYPE @@ -243,7 +243,7 @@ Movement_48: ; 51db add hl, bc ld [hl], STEP_TYPE_03 - ld hl, VramState + ld hl, wVramState res 7, [hl] ret ; 51fd @@ -257,7 +257,7 @@ Movement_remove_object: ; 51fd ld [hl], -1 .not_leading - ld hl, VramState + ld hl, wVramState res 7, [hl] ret ; 5210 @@ -271,7 +271,7 @@ Movement_4b: ; 5210 add hl, bc ld [hl], STEP_TYPE_04 - ld hl, VramState + ld hl, wVramState res 7, [hl] ret ; 5222 |