Explorar el Código

explicitly represent 1 as a float (1.0f instead of 1)

Morph1984 hace 6 años
padre
commit
58783b8a46
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      src/core/hle/service/audio/audren_u.cpp

+ 1 - 1
src/core/hle/service/audio/audren_u.cpp

@@ -256,7 +256,7 @@ private:
 
         IPC::ResponseBuilder rb{ctx, 3};
         rb.Push(RESULT_SUCCESS);
-        rb.Push<f32>(1);
+        rb.Push<f32>(1.0f);
     }
 
     void GetActiveAudioDeviceName(Kernel::HLERequestContext& ctx) {