JitInterface: fix disassembly entry point

This adds the downcount check code to the disassembly text and removes the
bogus instructions at the end.
This commit is contained in:
Tillmann Karras 2015-08-06 10:11:12 +02:00
parent 0821607b2f
commit 8adca82cc6

View file

@ -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;