summaryrefslogtreecommitdiff
path: root/home/util.asm
diff options
context:
space:
mode:
Diffstat (limited to 'home/util.asm')
-rw-r--r--home/util.asm5
1 files changed, 3 insertions, 2 deletions
diff --git a/home/util.asm b/home/util.asm
index 880513b..ccc990a 100644
--- a/home/util.asm
+++ b/home/util.asm
@@ -65,12 +65,13 @@ SkipNames:: ; 341f
ret
AddNTimes:: ; 3429 (0:3429)
+; Adds bc to hl, a times
and a
ret z
-.asm_342b
+.loop
add hl, bc
dec a
- jr nz, .asm_342b
+ jr nz, .loop
ret
; 0x3430