Skip to content

Commit

Permalink
Fix and
Browse files Browse the repository at this point in the history
  • Loading branch information
ChillerDragon committed Aug 23, 2024
1 parent 3a57145 commit 3ce3bf4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/unpacker.asm
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,8 @@ get_int:
; *pInOut = *pSrc & 0x3F;
mov r9, [unpacker_data_ptr]
mov r8, 0
and r8b, byte [r9]
mov r8b, byte [r9]
and r8b, 0x3f
mov rax, r8

._get_int_do_block:
Expand Down

0 comments on commit 3ce3bf4

Please sign in to comment.