mirror of https://github.com/PCSX2/pcsx2.git
Forgot this.
git-svn-id: http://pcsx2.googlecode.com/svn/trunk@785 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
9ad464377a
commit
64a1b3fb45
|
@ -787,7 +787,7 @@ void psxSetBranchImm( u32 imm )
|
||||||
iPsxBranchTest(imm, imm <= psxpc);
|
iPsxBranchTest(imm, imm <= psxpc);
|
||||||
|
|
||||||
ptr = JMP32(0);
|
ptr = JMP32(0);
|
||||||
recBlocks.Link(imm, (uptr)ptr);
|
recBlocks.Link(HWADDR(imm), (uptr)ptr);
|
||||||
}
|
}
|
||||||
|
|
||||||
//fixme : this is all a huge hack, we base the counter advancements on the average an opcode should take (wtf?)
|
//fixme : this is all a huge hack, we base the counter advancements on the average an opcode should take (wtf?)
|
||||||
|
@ -1175,7 +1175,7 @@ StartRecomp:
|
||||||
_psxFlushCall(FLUSH_EVERYTHING);
|
_psxFlushCall(FLUSH_EVERYTHING);
|
||||||
MOV32ItoM((uptr)&psxRegs.pc, psxpc);
|
MOV32ItoM((uptr)&psxRegs.pc, psxpc);
|
||||||
u32 *ptr = JMP32(0);
|
u32 *ptr = JMP32(0);
|
||||||
recBlocks.Link(s_nEndBlock, (uptr)ptr);
|
recBlocks.Link(HWADDR(s_nEndBlock), (uptr)ptr);
|
||||||
psxbranch = 3;
|
psxbranch = 3;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue