summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMorph1984 <39850852+Morph1984@users.noreply.github.com>2019-09-03 23:06:32 -0400
committerGitHub <noreply@github.com>2019-09-03 23:06:32 -0400
commit58783b8a464d783d9c8d22fc8d7307dc0da95d33 (patch)
treedbbb03051ae08ed381b483d671561cd01f1449ee /src
parentb1ca56bed2eca5ee2b2f71ad8215fd19dddc26a4 (diff)
explicitly represent 1 as a float (1.0f instead of 1)
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 547dab26de..dd9b20e868 100644
--- a/src/core/hle/service/audio/audren_u.cpp
+++ b/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) {