summaryrefslogtreecommitdiff
path: root/home/string.asm
diff options
context:
space:
mode:
authorpikalaxalt <PikalaxALT@gmail.com>2016-05-08 14:11:24 -0400
committerpikalaxalt <PikalaxALT@gmail.com>2016-05-08 14:11:24 -0400
commite95d42e0af1921f516c1fd4269024aa3f586514f (patch)
tree3130d8d059dbeb247b24bd31eec28c6e358659d8 /home/string.asm
parentbb58230ca7a3f0f3c58af2b182051cf33ba609ac (diff)
All functions in main.asm have non-generic names
Diffstat (limited to 'home/string.asm')
-rw-r--r--home/string.asm3
1 files changed, 1 insertions, 2 deletions
diff --git a/home/string.asm b/home/string.asm
index 70a0f2dd5..492246832 100644
--- a/home/string.asm
+++ b/home/string.asm
@@ -8,8 +8,6 @@ InitName:: ; 2ef9
; Intended for names, so this function is limited to ten characters.
push hl
ld c, 10
-; 2efc
-
_InitString:: ; 2efc
; if the string pointed to by hl is empty (defined as "zero or more spaces
; followed by a null"), then initialize it to the string pointed to by de.
@@ -31,6 +29,7 @@ _InitString:: ; 2efc
inc c
call CopyBytes
ret
+
.notblank
pop bc
pop hl