From 101952c38b306891ff062f3df4f59d0b5efca92d Mon Sep 17 00:00:00 2001 From: MrPsyMan Date: Thu, 5 Jun 2014 04:24:32 +0300 Subject: [PATCH] Reverted commit ed8c25ef7cc88a19bc9abf9fe4d464e9b4f807f6 as it creates compatibility issues. --- core/hw/sh4/dyna/decoder.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/hw/sh4/dyna/decoder.cpp b/core/hw/sh4/dyna/decoder.cpp index 5dbcfb2a7..925b96bb9 100644 --- a/core/hw/sh4/dyna/decoder.cpp +++ b/core/hw/sh4/dyna/decoder.cpp @@ -1169,7 +1169,7 @@ _end: //Small-n-simple idle loop detector :p if (state.info.has_readm && !state.info.has_writem && !state.info.has_fpu && blk->guest_opcodes<6) { - if ((blk->BlockType==BET_Cond_0 || blk->BlockType==BET_Cond_1) && blk->BranchBlock<=blk->addr) + if (blk->BlockType==BET_Cond_0 || blk->BlockType==BET_Cond_1 && blk->BranchBlock<=blk->addr) { blk->guest_cycles*=3; }