mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-06-13 00:58:29 +02:00
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:
@ -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();
|
||||
|
||||
|
Reference in New Issue
Block a user