DSPLLE - SR_TOP2BITS 16bit fix

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@5073 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
Marko Pusljar 2010-02-17 10:21:25 +00:00
parent c3697df665
commit bd1b12e357
1 changed files with 1 additions and 1 deletions

View File

@ -85,7 +85,7 @@ void Update_SR_Register16(s16 _Value, bool carry, bool overflow)
}
// Checks if top bits are equal, what is it good for?
if (((_Value >> 14) == 0) || ((_Value >> 14) == 3))
if ((((u16)_Value >> 14) == 0) || (((u16)_Value >> 14) == 3))
{
g_dsp.r[DSP_REG_SR] |= SR_TOP2BITS;
}