Selaa lähdekoodia

Fix silly copy/paste error on float variant of the FMINNM instruction

gdkchan 7 vuotta sitten
vanhempi
sitoutus
3cf1b6cf77
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  1. 1 1
      ChocolArm64/Instruction/ASoftFloat.cs

+ 1 - 1
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)