Skip to content

Commit

Permalink
Fix protocol version chunk header if statement
Browse files Browse the repository at this point in the history
  • Loading branch information
ChillerDragon committed Dec 27, 2024
1 parent a76977b commit a5ec9e6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/chunk_packer.asm
Original file line number Diff line number Diff line change
Expand Up @@ -54,11 +54,11 @@ pack_chunk_header:
cmp al, 7
pop rax
je .version7
.version7:
call pack_chunk_header7
jmp .end
.version6:
call pack_chunk_header6
jmp .end
.version7:
call pack_chunk_header7
.end:
ret

Expand Down

0 comments on commit a5ec9e6

Please sign in to comment.