summaryrefslogtreecommitdiffstats
path: root/src/common/settings.cpp
diff options
context:
space:
mode:
authorameerj <52414509+ameerj@users.noreply.github.com>2021-07-09 02:58:38 +0200
committerameerj <52414509+ameerj@users.noreply.github.com>2021-07-09 02:58:38 +0200
commit386cd45f07b83824fc539f8a72429ebf73f5daf4 (patch)
treec0d9ce6b4c6e0db36fac69ee8fc23b2bcb5f9129 /src/common/settings.cpp
parentMerge pull request #6539 from lat9nq/default-setting (diff)
downloadyuzu-386cd45f07b83824fc539f8a72429ebf73f5daf4.tar
yuzu-386cd45f07b83824fc539f8a72429ebf73f5daf4.tar.gz
yuzu-386cd45f07b83824fc539f8a72429ebf73f5daf4.tar.bz2
yuzu-386cd45f07b83824fc539f8a72429ebf73f5daf4.tar.lz
yuzu-386cd45f07b83824fc539f8a72429ebf73f5daf4.tar.xz
yuzu-386cd45f07b83824fc539f8a72429ebf73f5daf4.tar.zst
yuzu-386cd45f07b83824fc539f8a72429ebf73f5daf4.zip
Diffstat (limited to '')
-rw-r--r--src/common/settings.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/settings.cpp b/src/common/settings.cpp
index 0061e29cc..c56d14b81 100644
--- a/src/common/settings.cpp
+++ b/src/common/settings.cpp
@@ -103,7 +103,7 @@ float Volume() {
if (values.audio_muted) {
return 0.0f;
}
- return values.volume.GetValue();
+ return values.volume.GetValue() / 100.0f;
}
void RestoreGlobalState(bool is_powered_on) {