mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-22 13:49:53 -06:00
DSPLLE - small idleskip improvment for zelda
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@5248 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -220,7 +220,7 @@ inline s64 dsp_get_long_prod()
|
||||
|
||||
inline s64 dsp_get_long_prod_round_prodl()
|
||||
{
|
||||
return (dsp_get_long_prod() + 0x8000) & ~0xffff;
|
||||
return (dsp_get_long_prod() + 0x7fff) & ~0xffff;
|
||||
}
|
||||
|
||||
// For accurate emulation, this is wrong - but the real prod registers behave
|
||||
|
Reference in New Issue
Block a user