summaryrefslogtreecommitdiff
path: root/home
diff options
context:
space:
mode:
authorRangi <35663410+Rangi42@users.noreply.github.com>2019-02-09 18:03:07 -0500
committerGitHub <noreply@github.com>2019-02-09 18:03:07 -0500
commitb791198f74e55ff6a96d33784d9661854dbca113 (patch)
tree17c78e5808c557144605884de2cdc99ddfdd0ebd /home
parent4fe0d93d4c0536b3517ba4b58822e5f6b1019382 (diff)
parent349664ec15995b40151378bbfc405930d47a3c5c (diff)
Merge pull request #596 from Rangi42/master
Remove the nested UNION within battle WRAM
Diffstat (limited to 'home')
-rw-r--r--home/map.asm6
1 files changed, 3 insertions, 3 deletions
diff --git a/home/map.asm b/home/map.asm
index 5cd658727..9af673f3d 100644
--- a/home/map.asm
+++ b/home/map.asm
@@ -1,8 +1,8 @@
; Functions dealing with rendering and interacting with maps.
-Clearwc7e8::
- ld hl, wc7e8
- ld bc, wc7e8_End - wc7e8
+ClearUnusedC7E8::
+ ld hl, wUnusedC7E8
+ ld bc, wUnusedC7E8End - wUnusedC7E8
ld a, 0
call ByteFill
ret