mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-12 19:19:03 +00:00
Jit64AsmCommon: Use correct quantization table
Stores quantize, loads dequantize.
This commit is contained in:
parent
b7f605e88e
commit
5f59755d15
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue