summaryrefslogtreecommitdiffstats
path: root/src/audio_core/algorithm
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-08-21 18:32:08 +0200
committerLioncash <mathew1800@gmail.com>2018-08-21 18:32:37 +0200
commit0057a47e41b178d0b47a7e0f50a6f48a36af254d (patch)
tree20620f183eb96935506dd3762599692bd1262747 /src/audio_core/algorithm
parentMerge pull request #1143 from lioncash/inc (diff)
downloadyuzu-0057a47e41b178d0b47a7e0f50a6f48a36af254d.tar
yuzu-0057a47e41b178d0b47a7e0f50a6f48a36af254d.tar.gz
yuzu-0057a47e41b178d0b47a7e0f50a6f48a36af254d.tar.bz2
yuzu-0057a47e41b178d0b47a7e0f50a6f48a36af254d.tar.lz
yuzu-0057a47e41b178d0b47a7e0f50a6f48a36af254d.tar.xz
yuzu-0057a47e41b178d0b47a7e0f50a6f48a36af254d.tar.zst
yuzu-0057a47e41b178d0b47a7e0f50a6f48a36af254d.zip
Diffstat (limited to 'src/audio_core/algorithm')
-rw-r--r--src/audio_core/algorithm/filter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/audio_core/algorithm/filter.cpp b/src/audio_core/algorithm/filter.cpp
index 403b8503f..9fcd0614d 100644
--- a/src/audio_core/algorithm/filter.cpp
+++ b/src/audio_core/algorithm/filter.cpp
@@ -46,7 +46,7 @@ void Filter::Process(std::vector<s16>& signal) {
out[0][ch] = b0 * in[0][ch] + b1 * in[1][ch] + b2 * in[2][ch] - a1 * out[1][ch] -
a2 * out[2][ch];
- signal[i * 2 + ch] = std::clamp(out[0][ch], -32768.0, 32767.0);
+ signal[i * 2 + ch] = static_cast<s16>(std::clamp(out[0][ch], -32768.0, 32767.0));
}
}
}