dsplle - another small fix

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@6075 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
Marko Pusljar
2010-08-08 16:35:10 +00:00
parent 2ac8691911
commit 95b0abb737
3 changed files with 30 additions and 9 deletions

View File

@ -47,8 +47,7 @@ void clr(const UDSPInstruction opc)
void clrl(const UDSPInstruction opc)
{
u8 reg = (opc >> 8) & 0x1;
s64 acc = (dsp_get_long_acc(reg) + 0x7fff) & ~0xffff;
s64 acc = dsp_round_long_acc(dsp_get_long_acc(reg));
zeroWriteBackLog();