Fix a typo in GenQuantizedLoads causing issues with SSSE3 in x86 builds

Patch from konpie: http://forums.dolphin-emulator.com/showthread.php?tid=24658
This commit is contained in:
Pierre Bourdon 2012-08-04 20:35:32 +02:00
parent d33e48319f
commit e42c6214d9
1 changed files with 1 additions and 1 deletions

View File

@ -440,7 +440,7 @@ void CommonAsmRoutines::GenQuantizedLoads() {
AND(32, R(ECX), Imm32(Memory::MEMVIEW32_MASK));
MOV(32, R(EAX), MDisp(ECX, (u32)Memory::base));
BSWAP(32, EAX);
MOVD_xmm(XMM0, M(&psTemp[0]));
MOVD_xmm(XMM0, R(EAX));
UNPCKLPS(XMM0, M((void*)m_one));
#endif
}