mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 14:19:46 -06:00
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:
@ -440,7 +440,7 @@ void CommonAsmRoutines::GenQuantizedLoads() {
|
|||||||
AND(32, R(ECX), Imm32(Memory::MEMVIEW32_MASK));
|
AND(32, R(ECX), Imm32(Memory::MEMVIEW32_MASK));
|
||||||
MOV(32, R(EAX), MDisp(ECX, (u32)Memory::base));
|
MOV(32, R(EAX), MDisp(ECX, (u32)Memory::base));
|
||||||
BSWAP(32, EAX);
|
BSWAP(32, EAX);
|
||||||
MOVD_xmm(XMM0, M(&psTemp[0]));
|
MOVD_xmm(XMM0, R(EAX));
|
||||||
UNPCKLPS(XMM0, M((void*)m_one));
|
UNPCKLPS(XMM0, M((void*)m_one));
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user