From 3cf1b6cf77424b2e3eb71035a7d1b2a3929061ce Mon Sep 17 00:00:00 2001 From: gdkchan Date: Sun, 5 Aug 2018 18:56:30 -0300 Subject: [PATCH] Fix silly copy/paste error on float variant of the FMINNM instruction --- ChocolArm64/Instruction/ASoftFloat.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ChocolArm64/Instruction/ASoftFloat.cs b/ChocolArm64/Instruction/ASoftFloat.cs index 8afa4002a..e3f067ed5 100644 --- a/ChocolArm64/Instruction/ASoftFloat.cs +++ b/ChocolArm64/Instruction/ASoftFloat.cs @@ -372,7 +372,7 @@ namespace ChocolArm64.Instruction op2 = float.PositiveInfinity; } - return Max(op1, op2); + return Min(op1, op2); } public static double MinNum(double op1, double op2)