Refraction found an issue with an MMI op, committing the fix for him.

git-svn-id: http://pcsx2.googlecode.com/svn/trunk@3192 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
ramapcsx2 2010-06-10 11:56:47 +00:00
parent e285ff4b50
commit 6e8596365e
1 changed files with 2 additions and 2 deletions

View File

@ -131,9 +131,9 @@ void recPLZCW()
// second word
if( regs >= 0 && (regs & MEM_XMMTAG) ) {
SSE2_PSHUFD_XMM_to_XMM(regs&0xf, regs&0xf, 0x4e);
SSE2_PSHUFD_XMM_to_XMM(regs&0xf, regs&0xf, 0xe1);
SSE2_MOVD_XMM_to_R(EAX, regs&0xf);
SSE2_PSHUFD_XMM_to_XMM(regs&0xf, regs&0xf, 0x4e);
SSE2_PSHUFD_XMM_to_XMM(regs&0xf, regs&0xf, 0xe1);
}
else if( regs >= 0 && (regs & MEM_MMXTAG) ) {
PSHUFWRtoR(regs&0xf, regs&0xf, 0x4e);