mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 14:19:46 -06:00
Jit64AsmCommon: Use correct quantization table
Stores quantize, loads dequantize.
This commit is contained in:
@ -301,7 +301,7 @@ void QuantizedMemoryRoutines::GenQuantizedStore(bool single, EQuantizeType type,
|
|||||||
}
|
}
|
||||||
else if (quantize > 0)
|
else if (quantize > 0)
|
||||||
{
|
{
|
||||||
MULSS(XMM0, M(&m_dequantizeTableS[quantize * 2]));
|
MULSS(XMM0, M(&m_quantizeTableS[quantize * 2]));
|
||||||
}
|
}
|
||||||
|
|
||||||
switch (type)
|
switch (type)
|
||||||
|
Reference in New Issue
Block a user