diff options
Diffstat (limited to 'home/text.asm')
-rw-r--r-- | home/text.asm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/home/text.asm b/home/text.asm index e010de6d4..a0b1eb644 100644 --- a/home/text.asm +++ b/home/text.asm @@ -2,7 +2,7 @@ ClearBox: ; fb6 ; Fill a c*b box at hl with blank tiles. ld a, " " -.y +Functionfb8: push bc push hl .x @@ -14,7 +14,7 @@ ClearBox: ; fb6 add hl, bc pop bc dec b - jr nz, .y + jr nz, Functionfb8 ret ; fc8 |