summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-08-21 23:04:53 +0200
committerGitHub <noreply@github.com>2018-08-21 23:04:53 +0200
commit16b83fac9baeeef38eded0b839841dcd67fe0618 (patch)
tree4d23a8b5a749889772aa016814a343810c888636
parentMerge pull request #1149 from lioncash/paren (diff)
parentaudio_core/filter: Add explicit cast to assignment in Process() (diff)
downloadyuzu-16b83fac9baeeef38eded0b839841dcd67fe0618.tar
yuzu-16b83fac9baeeef38eded0b839841dcd67fe0618.tar.gz
yuzu-16b83fac9baeeef38eded0b839841dcd67fe0618.tar.bz2
yuzu-16b83fac9baeeef38eded0b839841dcd67fe0618.tar.lz
yuzu-16b83fac9baeeef38eded0b839841dcd67fe0618.tar.xz
yuzu-16b83fac9baeeef38eded0b839841dcd67fe0618.tar.zst
yuzu-16b83fac9baeeef38eded0b839841dcd67fe0618.zip
-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));
}
}
}