summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--engine/overworld/warp_connection.asm2
-rw-r--r--home/map.asm6
-rw-r--r--wram.asm4
3 files changed, 6 insertions, 6 deletions
diff --git a/engine/overworld/warp_connection.asm b/engine/overworld/warp_connection.asm
index b39d424a7..2630ad913 100644
--- a/engine/overworld/warp_connection.asm
+++ b/engine/overworld/warp_connection.asm
@@ -1,6 +1,6 @@
HandleNewMap:
- call Clearwc7e8
+ call ClearUnusedC7E8
call ResetMapBufferEventFlags
call ResetFlashIfOutOfCave
call GetCurrentMapSceneID
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
diff --git a/wram.asm b/wram.asm
index 22941c5c5..33a543617 100644
--- a/wram.asm
+++ b/wram.asm
@@ -906,8 +906,8 @@ wc7d3:: ds 1
wc7d4:: ds 1
ENDU ; c7e8
-wc7e8:: ds 24
-wc7e8_End::
+wUnusedC7E8:: ds 24
+wUnusedC7E8End::
SECTION "Overworld Map", WRAM0