summaryrefslogtreecommitdiff
path: root/home.asm
diff options
context:
space:
mode:
authorluckytyphlosion <10688458+luckytyphlosion@users.noreply.github.com>2018-01-23 16:45:34 -0500
committerluckytyphlosion <10688458+luckytyphlosion@users.noreply.github.com>2018-01-23 16:45:34 -0500
commitf2ae74079fc917cbf7e1f640eb8beda0d4740887 (patch)
treed1982b2f1c0c23e1b274ed84db330351d4f4806b /home.asm
parentc60f1331fef22b886adf3472d2b4f348832cfaf7 (diff)
Prefix wram labels with w, part 1.
Handle edge cases first.
Diffstat (limited to 'home.asm')
-rw-r--r--home.asm4
1 files changed, 2 insertions, 2 deletions
diff --git a/home.asm b/home.asm
index 35968744d..58dcdb433 100644
--- a/home.asm
+++ b/home.asm
@@ -169,8 +169,8 @@ INCLUDE "home/double_speed.asm"
ClearSprites:: ; 300b
; Erase OAM data
- ld hl, Sprites
- ld b, SpritesEnd - Sprites
+ ld hl, wVirtualOAM
+ ld b, SpritesEnd - wVirtualOAM
xor a
.loop
ld [hli], a