diff options
| author | 2016-08-31 16:59:37 +0100 | |
|---|---|---|
| committer | 2016-08-31 16:59:37 +0100 | |
| commit | dc3f6a34f8e3458982f3ad646a54bbeac4b918e2 (patch) | |
| tree | 547ec290bfa04497c63f10603d801e473a0b1f84 /src/core/settings.cpp | |
| parent | audio_core: Add EnableStretching to interface so that one can toggle stretchi... (diff) | |
| download | yuzu-dc3f6a34f8e3458982f3ad646a54bbeac4b918e2.tar.gz yuzu-dc3f6a34f8e3458982f3ad646a54bbeac4b918e2.tar.xz yuzu-dc3f6a34f8e3458982f3ad646a54bbeac4b918e2.zip | |
configure_audio: User-configuratble option to enable/disable audio stretching
Diffstat (limited to 'src/core/settings.cpp')
| -rw-r--r-- | src/core/settings.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/settings.cpp b/src/core/settings.cpp index 77261eafe..1b6733a79 100644 --- a/src/core/settings.cpp +++ b/src/core/settings.cpp | |||
| @@ -24,6 +24,7 @@ void Apply() { | |||
| 24 | VideoCore::g_scaled_resolution_enabled = values.use_scaled_resolution; | 24 | VideoCore::g_scaled_resolution_enabled = values.use_scaled_resolution; |
| 25 | 25 | ||
| 26 | AudioCore::SelectSink(values.sink_id); | 26 | AudioCore::SelectSink(values.sink_id); |
| 27 | AudioCore::EnableStretching(values.enable_audio_stretching); | ||
| 27 | 28 | ||
| 28 | } | 29 | } |
| 29 | 30 | ||