From 5f59755d1540b4759328fae3318921e6045a1af0 Mon Sep 17 00:00:00 2001 From: MerryMage Date: Sun, 19 Mar 2017 14:49:24 +0000 Subject: [PATCH] Jit64AsmCommon: Use correct quantization table Stores quantize, loads dequantize. --- Source/Core/Core/PowerPC/Jit64Common/Jit64AsmCommon.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/Core/PowerPC/Jit64Common/Jit64AsmCommon.cpp b/Source/Core/Core/PowerPC/Jit64Common/Jit64AsmCommon.cpp index 3c9ec50d4f..a98d69551d 100644 --- a/Source/Core/Core/PowerPC/Jit64Common/Jit64AsmCommon.cpp +++ b/Source/Core/Core/PowerPC/Jit64Common/Jit64AsmCommon.cpp @@ -301,7 +301,7 @@ void QuantizedMemoryRoutines::GenQuantizedStore(bool single, EQuantizeType type, } else if (quantize > 0) { - MULSS(XMM0, M(&m_dequantizeTableS[quantize * 2])); + MULSS(XMM0, M(&m_quantizeTableS[quantize * 2])); } switch (type)