From e26d5f3f59d6d3643e23118f6ac468847a9bbbf9 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 --- Instruction/ASoftFloat.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Instruction/ASoftFloat.cs b/Instruction/ASoftFloat.cs index 8afa400..e3f067e 100644 --- a/Instruction/ASoftFloat.cs +++ b/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)