Fix -- There's no negation on FMUL32I
This commit is contained in:
parent
f601f0d98f
commit
4a7dfadb0f
1 changed files with 1 additions and 1 deletions
|
@ -87,7 +87,7 @@ namespace Ryujinx.Graphics.Shader.Instructions
|
|||
{
|
||||
IOpCodeFArith op = (IOpCodeFArith)context.CurrOp;
|
||||
|
||||
bool negateB = op.RawOpCode.Extract(48);
|
||||
bool negateB = !(op is OpCodeFArithImm32) && op.RawOpCode.Extract(48);
|
||||
|
||||
Operand srcA = GetSrcA(context);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue