summaryrefslogtreecommitdiff
path: root/home/string.asm
diff options
context:
space:
mode:
authorBryan Bishop <kanzure@gmail.com>2014-02-04 07:25:51 -0800
committerBryan Bishop <kanzure@gmail.com>2014-02-04 07:25:51 -0800
commit1202e68d2f695d4b91d184bd43139dbe10cb8131 (patch)
tree504954f57273cae14de4618a82770c4e4e2e5dd9 /home/string.asm
parent80465fc6e6f1455f4ae65b5c0db54b9953ca0cc5 (diff)
parent7c02c2bb31317c31446a5907fe68f26dabb4858f (diff)
Merge pull request #228 from yenatch/nuke-globals
Nuke globals.asm
Diffstat (limited to 'home/string.asm')
-rw-r--r--home/string.asm6
1 files changed, 3 insertions, 3 deletions
diff --git a/home/string.asm b/home/string.asm
index a871b4d2a..5b705002a 100644
--- a/home/string.asm
+++ b/home/string.asm
@@ -1,16 +1,16 @@
-InitString: ; 2ef6
+InitString:: ; 2ef6
; Init a string of length c.
push hl
jr _InitString
; 2ef9
-InitName: ; 2ef9
+InitName:: ; 2ef9
; Intended for names, so this function is limited to ten characters.
push hl
ld c, 10
; 2efc
-_InitString: ; 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.
push bc