aboutsummaryrefslogtreecommitdiff
path: root/sound/mixer.cpp
diff options
context:
space:
mode:
authorMax Horn2002-10-23 00:24:43 +0000
committerMax Horn2002-10-23 00:24:43 +0000
commitab13e67b0907fdb97b0dde3bb3344650d4d12946 (patch)
tree4ad06cfef44c96d7055f0beeb69c0ec424ea9d46 /sound/mixer.cpp
parentdf2bf812c3a40ce104f7ccd3a240e6f8d3303aa8 (diff)
downloadscummvm-rg350-ab13e67b0907fdb97b0dde3bb3344650d4d12946.tar.gz
scummvm-rg350-ab13e67b0907fdb97b0dde3bb3344650d4d12946.tar.bz2
scummvm-rg350-ab13e67b0907fdb97b0dde3bb3344650d4d12946.zip
fix -Wshadow warnings
svn-id: r5270
Diffstat (limited to 'sound/mixer.cpp')
-rw-r--r--sound/mixer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/mixer.cpp b/sound/mixer.cpp
index 7f1c169da1..812494a956 100644
--- a/sound/mixer.cpp
+++ b/sound/mixer.cpp
@@ -293,7 +293,7 @@ protected:
int a, b, c, d;
public:
- CubicInterpolator(int a, int b, int c) : x0(2 * a - b), x1(a), x2(b), x3(c)
+ CubicInterpolator(int a0, int b0, int c0) : x0(2 * a0 - b0), x1(a0), x2(b0), x3(c0)
{
// We use a simple linear interpolation for x0
updateCoefficients();