summaryrefslogtreecommitdiff
path: root/Source/Core/DSPCore/Src/DspIntBranch.cpp
diff options
context:
space:
mode:
authornakeee <nakeee@gmail.com>2009-07-08 20:06:15 +0000
committernakeee <nakeee@gmail.com>2009-07-08 20:06:15 +0000
commita0a7116fe0c5fcbd77fc5a7fb65edf368df0e35f (patch)
treedacb7f8039b9c0452d0582a1579013a17ab9198b /Source/Core/DSPCore/Src/DspIntBranch.cpp
parentb2f36d4401e1e0d3e7d1be789e16d639b78b17a7 (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/DSPCore/Src/DspIntBranch.cpp')
-rw-r--r--Source/Core/DSPCore/Src/DspIntBranch.cpp8
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