compile fix

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2946 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
nakeee 2009-04-09 22:32:30 +00:00
parent a421ab0fd0
commit 96251a911f
1 changed files with 1 additions and 1 deletions

View File

@ -1552,7 +1552,7 @@ void mulac(const UDSPInstruction& opc)
void mulmv(const UDSPInstruction& opc) void mulmv(const UDSPInstruction& opc)
{ {
u8 rreg = (opc.hex >> 8) & 0x1; 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 prod = dsp_get_long_prod();
s64 acc = prod; s64 acc = prod;
dsp_set_long_acc(rreg, acc); dsp_set_long_acc(rreg, acc);