From 67084c9d261c5ab88c52b2dd99c8a767be831805 Mon Sep 17 00:00:00 2001 From: Rangi42 Date: Mon, 16 Dec 2024 10:35:55 -0500 Subject: Remove redundant parentheses --- home/vcopy.asm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'home/vcopy.asm') diff --git a/home/vcopy.asm b/home/vcopy.asm index 93c035eb..1b742817 100644 --- a/home/vcopy.asm +++ b/home/vcopy.asm @@ -140,7 +140,7 @@ AutoBgMapTransfer:: ld h, a ldh a, [hAutoBGTransferDest] ld l, a - ld de, (12 * 32) + ld de, 12 * 32 add hl, de xor a ; TRANSFERTOP jr .doTransfer @@ -160,7 +160,7 @@ AutoBgMapTransfer:: ld h, a ldh a, [hAutoBGTransferDest] ld l, a - ld de, (6 * 32) + ld de, 6 * 32 add hl, de ld a, TRANSFERBOTTOM .doTransfer -- cgit v1.3.1-sl0p