summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar Morph19842019-09-03 23:20:19 -0400
committerGravatar GitHub2019-09-03 23:20:19 -0400
commitec95c73a127fbc909a1a0a75dd6433a77d1e9e42 (patch)
tree52248ee04240c4b690f922d5f9cbe6f777df3eb5 /src
parentexplicitly represent 1 as a float (1.0f instead of 1) (diff)
downloadyuzu-ec95c73a127fbc909a1a0a75dd6433a77d1e9e42.tar.gz
yuzu-ec95c73a127fbc909a1a0a75dd6433a77d1e9e42.tar.xz
yuzu-ec95c73a127fbc909a1a0a75dd6433a77d1e9e42.zip
remove <f32>
We can remove this since its already a f32 value
Diffstat (limited to 'src')
-rw-r--r--src/core/hle/service/audio/audren_u.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/audio/audren_u.cpp b/src/core/hle/service/audio/audren_u.cpp
index dd9b20e86..b4bd9adf0 100644
--- a/src/core/hle/service/audio/audren_u.cpp
+++ b/src/core/hle/service/audio/audren_u.cpp
@@ -256,7 +256,7 @@ private:
256 256
257 IPC::ResponseBuilder rb{ctx, 3}; 257 IPC::ResponseBuilder rb{ctx, 3};
258 rb.Push(RESULT_SUCCESS); 258 rb.Push(RESULT_SUCCESS);
259 rb.Push<f32>(1.0f); 259 rb.Push(1.0f);
260 } 260 }
261 261
262 void GetActiveAudioDeviceName(Kernel::HLERequestContext& ctx) { 262 void GetActiveAudioDeviceName(Kernel::HLERequestContext& ctx) {