summaryrefslogtreecommitdiff
path: root/home/clear_sprites.asm
diff options
context:
space:
mode:
Diffstat (limited to 'home/clear_sprites.asm')
-rw-r--r--home/clear_sprites.asm6
1 files changed, 3 insertions, 3 deletions
diff --git a/home/clear_sprites.asm b/home/clear_sprites.asm
index c30c93d..c25d251 100644
--- a/home/clear_sprites.asm
+++ b/home/clear_sprites.asm
@@ -2,7 +2,7 @@ INCLUDE "constants.asm"
SECTION "home/clear_sprites.asm", ROM0
-ClearSprites:: ; 32dc
+ClearSprites::
ld hl, wVirtualOAM
ld b, wVirtualOAMEnd - wVirtualOAM
xor a
@@ -12,7 +12,7 @@ ClearSprites:: ; 32dc
jr nz, .loop
ret
-HideSprites:: ; 32e7
+HideSprites::
ld hl, wVirtualOAM
ld de, SPRITEOAMSTRUCT_LENGTH
ld b, NUM_SPRITE_OAM_STRUCTS
@@ -22,4 +22,4 @@ HideSprites:: ; 32e7
add hl, de
dec b
jr nz, .loop
- ret \ No newline at end of file
+ ret