psxinterpreter.c

- dobranch = peek, don't cache

git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@60334 e17a0e51-4ae3-4d35-97c3-1a29b211df97
This commit is contained in:
SND\shalma_cp 2010-11-29 19:18:58 +00:00
parent 55d5b55272
commit a8ffba8f7e

View File

@ -393,7 +393,7 @@ __inline void doBranch(u32 tar) {
// branch delay slot
//code = (u32 *)PSXM(psxRegs.pc);
code = Read_ICache( psxRegs.pc, 0 );
code = Read_ICache( psxRegs.pc, 1 );
psxRegs.code = ((code == NULL) ? 0 : SWAP32(*code));