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:
parent
d33e48319f
commit
e42c6214d9
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue