DSPLLE - lsr16 fix

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@5148 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
Marko Pusljar 2010-02-28 23:31:43 +00:00
parent 8035ccaef4
commit 335303803b

View File

@ -642,7 +642,7 @@ void lsr16(const UDSPInstruction& opc)
u8 areg = (opc.hex >> 8) & 0x1;
u64 acc = dsp_get_long_acc(areg);
acc &= 0x000000FFFFFFFFFFULL;
acc >>= 16;
zeroWriteBackLog();