소스 검색

Fix disassembler issue

Fix disassembler issue properly
Matt 6 년 전
부모
커밋
6f45d33c8a
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/core/vendor/DisassembleX86-64.mjs

+ 1 - 1
src/core/vendor/DisassembleX86-64.mjs

@@ -3609,7 +3609,7 @@ function NextByte()
 {
   //Add the current byte as hex to InstructionHex which will be displayed beside the decoded instruction.
   //After an instruction decodes InstructionHex is only added beside the instruction if ShowInstructionHex is active.
-
+  var t;
   if ( CodePos < BinCode.length ) //If not out of bounds.
   {
     //Convert current byte to String, and pad.