Merge pull request #2804 from Tilka/disassembly
JitInterface: fix disassembly entry point
This commit is contained in:
commit
767ed88f3d
|
@ -202,8 +202,7 @@ namespace JitInterface
|
|||
|
||||
JitBlock* block = jit->GetBlockCache()->GetBlock(block_num);
|
||||
|
||||
*code = (const u8*)jit->GetBlockCache()->GetCompiledCodeFromBlock(block_num);
|
||||
|
||||
*code = block->checkedEntry;
|
||||
*code_size = block->codeSize;
|
||||
*address = block->originalAddress;
|
||||
return 0;
|
||||
|
|
Loading…
Reference in New Issue