mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-10 20:06:40 +00:00
Fix silly copy/paste error on float variant of the FMINNM instruction
This commit is contained in:
parent
221270db90
commit
3cf1b6cf77
1 changed files with 1 additions and 1 deletions
|
@ -372,7 +372,7 @@ namespace ChocolArm64.Instruction
|
||||||
op2 = float.PositiveInfinity;
|
op2 = float.PositiveInfinity;
|
||||||
}
|
}
|
||||||
|
|
||||||
return Max(op1, op2);
|
return Min(op1, op2);
|
||||||
}
|
}
|
||||||
|
|
||||||
public static double MinNum(double op1, double op2)
|
public static double MinNum(double op1, double op2)
|
||||||
|
|
Loading…
Reference in a new issue