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:
Pierre Bourdon 2012-08-04 20:45:48 +02:00
parent d44a3471be
commit 8597660855

View File

@ -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