summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/Src/OpcodeDecoding.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Core/VideoCommon/Src/OpcodeDecoding.cpp')
-rw-r--r--Source/Core/VideoCommon/Src/OpcodeDecoding.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/Core/VideoCommon/Src/OpcodeDecoding.cpp b/Source/Core/VideoCommon/Src/OpcodeDecoding.cpp
index 18d6726ae3..4f7f86d655 100644
--- a/Source/Core/VideoCommon/Src/OpcodeDecoding.cpp
+++ b/Source/Core/VideoCommon/Src/OpcodeDecoding.cpp
@@ -439,7 +439,8 @@ void OpcodeDecoder_Init()
#if _M_SSE >= 0x301
if (cpu_info.bSSSE3)
{
- *DataReadU32xFuncs = *DataReadU32xFuncs_SSSE3;
+ for (int i = 0; i < 16; ++i)
+ DataReadU32xFuncs[i] = DataReadU32xFuncs_SSSE3[i];
}
#endif