diff options
Diffstat (limited to 'home/map.asm')
-rw-r--r-- | home/map.asm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/home/map.asm b/home/map.asm index 22719788..75281a1b 100644 --- a/home/map.asm +++ b/home/map.asm @@ -1029,7 +1029,7 @@ CoordinatesEventText:: CheckObjectMask:: ldh a, [hMapObjectIndexBuffer] ld e, a - ld d, $0 + ld d, 0 ld hl, wObjectMasks add hl, de ld a, [hl] @@ -1038,7 +1038,7 @@ CheckObjectMask:: MaskObject:: ldh a, [hMapObjectIndexBuffer] ld e, a - ld d, $0 + ld d, 0 ld hl, wObjectMasks add hl, de ld [hl], -1 ; masked @@ -1047,7 +1047,7 @@ MaskObject:: UnmaskObject:: ldh a, [hMapObjectIndexBuffer] ld e, a - ld d, $0 + ld d, 0 ld hl, wObjectMasks add hl, de ld [hl], 0 ; unmasked @@ -1565,7 +1565,7 @@ GetCoordTile:: and a jr z, .nope ld l, a - ld h, $0 + ld h, 0 add hl, hl add hl, hl ld a, [wTilesetCollisionAddress] |