From 2a70696411b92af26a72c2b28212e4fe73cdd2d8 Mon Sep 17 00:00:00 2001 From: notaz Date: Wed, 22 Jun 2011 17:17:42 +0300 Subject: [PATCH] drc: merge Ari64's patch: 16_continue_after_branch_into_delay_slot --- libpcsxcore/new_dynarec/new_dynarec.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libpcsxcore/new_dynarec/new_dynarec.c b/libpcsxcore/new_dynarec/new_dynarec.c index f1bdbfc2..9fdaa72b 100644 --- a/libpcsxcore/new_dynarec/new_dynarec.c +++ b/libpcsxcore/new_dynarec/new_dynarec.c @@ -8577,6 +8577,7 @@ int new_recompile_block(int addr) // Does the block continue due to a branch? for(j=i-1;j>=0;j--) { + if(ba[j]==start+i*4) done=j=0; // Branch into delay slot if(ba[j]==start+i*4+4) done=j=0; if(ba[j]==start+i*4+8) done=j=0; } -- 2.39.2