From 96251a911f6019e7b82e1bdc58ea94b0a37f505c Mon Sep 17 00:00:00 2001 From: nakeee Date: Thu, 9 Apr 2009 22:32:30 +0000 Subject: [PATCH] compile fix git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2946 8ced0084-cf51-0410-be5f-012b33b47a6e --- Source/Plugins/Plugin_DSP_LLE/Src/DSPInterpreter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Plugins/Plugin_DSP_LLE/Src/DSPInterpreter.cpp b/Source/Plugins/Plugin_DSP_LLE/Src/DSPInterpreter.cpp index 9d1e84ab16..d263175383 100644 --- a/Source/Plugins/Plugin_DSP_LLE/Src/DSPInterpreter.cpp +++ b/Source/Plugins/Plugin_DSP_LLE/Src/DSPInterpreter.cpp @@ -1552,7 +1552,7 @@ void mulac(const UDSPInstruction& opc) void mulmv(const UDSPInstruction& opc) { u8 rreg = (opc.hex >> 8) & 0x1; - u8 sreg = ((opc.hex >> 11) & 0x1) + u8 sreg = ((opc.hex >> 11) & 0x1); s64 prod = dsp_get_long_prod(); s64 acc = prod; dsp_set_long_acc(rreg, acc);