Преглед на файлове

Support single precision contants for double precision operations (#1673)

gdkchan преди 5 години
родител
ревизия
ce9105a130
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      Ryujinx.Graphics.Shader/CodeGen/Glsl/NumberFormatter.cs

+ 1 - 1
Ryujinx.Graphics.Shader/CodeGen/Glsl/NumberFormatter.cs

@@ -10,7 +10,7 @@ namespace Ryujinx.Graphics.Shader.CodeGen.Glsl
 
         public static bool TryFormat(int value, VariableType dstType, out string formatted)
         {
-            if (dstType == VariableType.F32)
+            if (dstType == VariableType.F32 || dstType == VariableType.F64)
             {
                 return TryFormatFloat(BitConverter.Int32BitsToSingle(value), out formatted);
             }