mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-03 22:58:50 +00: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:
parent
d33e48319f
commit
e42c6214d9
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue