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 e329f6b6e..b315928b8 100644 --- a/home/map.asm +++ b/home/map.asm @@ -1126,7 +1126,7 @@ CoordinatesEventText:: CheckObjectMask:: ldh a, [hMapObjectIndexBuffer] ld e, a - ld d, $0 + ld d, 0 ld hl, wObjectMasks add hl, de ld a, [hl] @@ -1135,7 +1135,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 @@ -1144,7 +1144,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 @@ -1719,7 +1719,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] |