summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMorph1984 <39850852+Morph1984@users.noreply.github.com>2019-09-04 05:06:32 +0200
committerGitHub <noreply@github.com>2019-09-04 05:06:32 +0200
commit58783b8a464d783d9c8d22fc8d7307dc0da95d33 (patch)
treedbbb03051ae08ed381b483d671561cd01f1449ee /src
parentChange u32 -> f32 (diff)
downloadyuzu-58783b8a464d783d9c8d22fc8d7307dc0da95d33.tar
yuzu-58783b8a464d783d9c8d22fc8d7307dc0da95d33.tar.gz
yuzu-58783b8a464d783d9c8d22fc8d7307dc0da95d33.tar.bz2
yuzu-58783b8a464d783d9c8d22fc8d7307dc0da95d33.tar.lz
yuzu-58783b8a464d783d9c8d22fc8d7307dc0da95d33.tar.xz
yuzu-58783b8a464d783d9c8d22fc8d7307dc0da95d33.tar.zst
yuzu-58783b8a464d783d9c8d22fc8d7307dc0da95d33.zip
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 547dab26d..dd9b20e86 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) {