diff --git a/Source/Core/Core/PowerPC/JitInterface.cpp b/Source/Core/Core/PowerPC/JitInterface.cpp index d059f08fab..df8f87bea0 100644 --- a/Source/Core/Core/PowerPC/JitInterface.cpp +++ b/Source/Core/Core/PowerPC/JitInterface.cpp @@ -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;