From a0a7116fe0c5fcbd77fc5a7fb65edf368df0e35f Mon Sep 17 00:00:00 2001 From: nakeee Date: Wed, 8 Jul 2009 20:06:15 +0000 Subject: [PATCH] DSPLLE uncomment else: [23:00] if i reenable those 2 else-s in bloop and bloopi sth strange happens [23:00] LLE sound in crazy taxi is like almost perfect I still don't think they make sense though.. git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@3712 8ced0084-cf51-0410-be5f-012b33b47a6e --- Source/Core/DSPCore/Src/DspIntBranch.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Source/Core/DSPCore/Src/DspIntBranch.cpp b/Source/Core/DSPCore/Src/DspIntBranch.cpp index 52aa121bb2..c2679a9f3e 100644 --- a/Source/Core/DSPCore/Src/DspIntBranch.cpp +++ b/Source/Core/DSPCore/Src/DspIntBranch.cpp @@ -239,11 +239,11 @@ void bloop(const UDSPInstruction& opc) dsp_reg_store_stack(2, loop_pc); dsp_reg_store_stack(3, cnt); } - /* else + else { g_dsp.pc = loop_pc; g_dsp.pc += opSize[dsp_peek_code()]; - }*/ + } } // BLOOPI #I, addrA @@ -266,11 +266,11 @@ void bloopi(const UDSPInstruction& opc) dsp_reg_store_stack(2, loop_pc); dsp_reg_store_stack(3, cnt); } - /* else + else { g_dsp.pc = loop_pc; g_dsp.pc += opSize[dsp_peek_code()]; - }*/ + } } } // namespace