Merge pull request #5112 from MerryMage/quantize

Jit64AsmCommon: Use correct quantization table
This commit is contained in:
Matthew Parlane 2017-03-20 13:26:38 +13:00 committed by GitHub
commit a20b73cfb4

View file

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