浏览代码

Merge branch 'artemisbot-bugs/disassembler-fix'

n1474335 6 年之前
父节点
当前提交
80bdf7410b
共有 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.
   //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.
   //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.
   if ( CodePos < BinCode.length ) //If not out of bounds.
   {
   {
     //Convert current byte to String, and pad.
     //Convert current byte to String, and pad.