summaryrefslogtreecommitdiff
path: root/Source/Core/DSPCore/Src/DspIntArithmetic.cpp
diff options
context:
space:
mode:
authorMarko Pusljar <LM1234@gmail.com>2009-11-12 16:17:22 +0000
committerMarko Pusljar <LM1234@gmail.com>2009-11-12 16:17:22 +0000
commitb858befba24c8a31cab82dd7534b91e5606db5e9 (patch)
treee6f93b20423a730670373141aeace08d2daf498d /Source/Core/DSPCore/Src/DspIntArithmetic.cpp
parent1ba75a05d0be3e5f37a54b4b19ce62ebc11ee3e6 (diff)
DSPLLE small mul fix
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@4533 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core/DSPCore/Src/DspIntArithmetic.cpp')
-rw-r--r--Source/Core/DSPCore/Src/DspIntArithmetic.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/DSPCore/Src/DspIntArithmetic.cpp b/Source/Core/DSPCore/Src/DspIntArithmetic.cpp
index 4687f97b21..ed5f5d6eb0 100644
--- a/Source/Core/DSPCore/Src/DspIntArithmetic.cpp
+++ b/Source/Core/DSPCore/Src/DspIntArithmetic.cpp
@@ -33,7 +33,7 @@ void clr(const UDSPInstruction& opc)
u8 reg = (opc.hex >> 11) & 0x1;
dsp_set_long_acc(reg, 0);
- Update_SR_Register64((s64)0); // really?
+ Update_SR_Register64(0);
zeroWriteBackLog();
}