mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-01 13:48:56 +00:00
Replace all of the opcode data read functions by their SSSE3 equivalent, not only the first one.
Patch from konpie: http://forums.dolphin-emulator.com/showthread.php?tid=24658
This commit is contained in:
parent
d44a3471be
commit
8597660855
1 changed files with 2 additions and 1 deletions
|
@ -439,7 +439,8 @@ void OpcodeDecoder_Init()
|
||||||
#if _M_SSE >= 0x301
|
#if _M_SSE >= 0x301
|
||||||
if (cpu_info.bSSSE3)
|
if (cpu_info.bSSSE3)
|
||||||
{
|
{
|
||||||
*DataReadU32xFuncs = *DataReadU32xFuncs_SSSE3;
|
for (int i = 0; i < 16; ++i)
|
||||||
|
DataReadU32xFuncs[i] = DataReadU32xFuncs_SSSE3[i];
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue