compile fix
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2946 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
a421ab0fd0
commit
96251a911f
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue