diff options
| author | nakeee <nakeee@gmail.com> | 2009-07-08 20:06:15 +0000 |
|---|---|---|
| committer | nakeee <nakeee@gmail.com> | 2009-07-08 20:06:15 +0000 |
| commit | a0a7116fe0c5fcbd77fc5a7fb65edf368df0e35f (patch) | |
| tree | dacb7f8039b9c0452d0582a1579013a17ab9198b /Source/Core | |
| parent | b2f36d4401e1e0d3e7d1be789e16d639b78b17a7 (diff) | |
DSPLLE uncomment else:
[23:00] <LordMark> if i reenable those 2 else-s in bloop and bloopi sth strange happens
[23:00] <LordMark> 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
Diffstat (limited to 'Source/Core')
| -rw-r--r-- | Source/Core/DSPCore/Src/DspIntBranch.cpp | 8 |
1 files 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 |
