summaryrefslogtreecommitdiff
path: root/src/common/settings.cpp
diff options
context:
space:
mode:
authorGravatar bunnei2021-09-18 11:18:24 -0700
committerGravatar GitHub2021-09-18 11:18:24 -0700
commit35f46fc079d9534df7850eca3ce29e89e04d8914 (patch)
tree16c57a4812428418b49bae264ef960559217901f /src/common/settings.cpp
parentMerge pull request #6950 from german77/multiplay (diff)
parentfix_clang_error (diff)
downloadyuzu-35f46fc079d9534df7850eca3ce29e89e04d8914.tar.gz
yuzu-35f46fc079d9534df7850eca3ce29e89e04d8914.tar.xz
yuzu-35f46fc079d9534df7850eca3ce29e89e04d8914.zip
Merge pull request #7020 from Moonlacer/remove_audio_stretching
Remove audio stretching
Diffstat (limited to '')
-rw-r--r--src/common/settings.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/common/settings.cpp b/src/common/settings.cpp
index e1fa90c5a..69f0bd8c0 100644
--- a/src/common/settings.cpp
+++ b/src/common/settings.cpp
@@ -61,7 +61,6 @@ void LogSettings() {
61 log_setting("Renderer_UseAsynchronousShaders", values.use_asynchronous_shaders.GetValue()); 61 log_setting("Renderer_UseAsynchronousShaders", values.use_asynchronous_shaders.GetValue());
62 log_setting("Renderer_AnisotropicFilteringLevel", values.max_anisotropy.GetValue()); 62 log_setting("Renderer_AnisotropicFilteringLevel", values.max_anisotropy.GetValue());
63 log_setting("Audio_OutputEngine", values.sink_id.GetValue()); 63 log_setting("Audio_OutputEngine", values.sink_id.GetValue());
64 log_setting("Audio_EnableAudioStretching", values.enable_audio_stretching.GetValue());
65 log_setting("Audio_OutputDevice", values.audio_device_id.GetValue()); 64 log_setting("Audio_OutputDevice", values.audio_device_id.GetValue());
66 log_setting("DataStorage_UseVirtualSd", values.use_virtual_sd.GetValue()); 65 log_setting("DataStorage_UseVirtualSd", values.use_virtual_sd.GetValue());
67 log_path("DataStorage_CacheDir", Common::FS::GetYuzuPath(Common::FS::YuzuPath::CacheDir)); 66 log_path("DataStorage_CacheDir", Common::FS::GetYuzuPath(Common::FS::YuzuPath::CacheDir));
@@ -115,7 +114,6 @@ void RestoreGlobalState(bool is_powered_on) {
115 } 114 }
116 115
117 // Audio 116 // Audio
118 values.enable_audio_stretching.SetGlobal(true);
119 values.volume.SetGlobal(true); 117 values.volume.SetGlobal(true);
120 118
121 // Core 119 // Core