summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Harding <33dannye@gmail.com>2020-05-27 14:36:35 -0500
committerGitHub <noreply@github.com>2020-05-27 14:36:35 -0500
commit50963770f3dbb953df904bc6c822713e210a24da (patch)
treeb34e8f1b1a72f908be94f7d10b3e8971b0f4cb3f
parent6119945fca16189ca0573e990b78c7f8edd1bf95 (diff)
parent18b3aa621feb498f9477b82a46611d2992732c3c (diff)
Merge pull request #242 from Akatsuki-py/fix_CopyDataUntil
fix comment in CopyDataUntil
-rw-r--r--home.asm2
1 files changed, 1 insertions, 1 deletions
diff --git a/home.asm b/home.asm
index 199edbaf..28fb81c9 100644
--- a/home.asm
+++ b/home.asm
@@ -3560,7 +3560,7 @@ PrintLetterDelay::
pop hl
ret
-; Copies [hl, bc) to [de, bc - hl).
+; Copies [hl, bc) to [de, de + bc - hl).
; In other words, the source data is from hl up to but not including bc,
; and the destination is de.
CopyDataUntil::