fix a bug in the backward version of unlzsa2_fast_v1.asm

an INC HL slipped through
This commit is contained in:
introspec 2019-07-27 14:14:54 +01:00 committed by GitHub
parent cca79e3e59
commit ac3bf78273
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -110,7 +110,7 @@ LongMatch: ;ld a,24 :
ManyLiterals: ld a,18 :
add (hl) : NEXT_HL : jr nc,CopyLiterals
ld c,(hl) : NEXT_HL
ld a,b : ld b,(hl) : inc hl
ld a,b : ld b,(hl) : NEXT_HL
jr CopyLiterals.useBC