summaryrefslogtreecommitdiff
path: root/Source/Core/AudioCommon/DPL2Decoder.cpp
diff options
context:
space:
mode:
authorScott Mansell <phiren@gmail.com>2015-02-16 12:59:45 +1300
committerScott Mansell <phiren@gmail.com>2015-02-16 12:59:45 +1300
commit7add7b685f930c2de0e8b08c8b2a30a4b6bd092d (patch)
treebd30488ebb7f77b66b34d604afdf4cf0c8e9e80c /Source/Core/AudioCommon/DPL2Decoder.cpp
parent16a639230806a866136c326661f5113ca5648fb2 (diff)
Remove unneeded spaces from code.
Line now matches the style of the rest of the function.
Diffstat (limited to 'Source/Core/AudioCommon/DPL2Decoder.cpp')
-rw-r--r--Source/Core/AudioCommon/DPL2Decoder.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/AudioCommon/DPL2Decoder.cpp b/Source/Core/AudioCommon/DPL2Decoder.cpp
index da16ee4af8..ca7afc9afa 100644
--- a/Source/Core/AudioCommon/DPL2Decoder.cpp
+++ b/Source/Core/AudioCommon/DPL2Decoder.cpp
@@ -51,7 +51,7 @@ static _ftype_t DotProduct(int count,const T *buf,const _ftype_t *coefficients)
}
while (count--)
- sum0+= *buf++ * *coefficients++;
+ sum0+=*buf++**coefficients++;
return sum0+sum1+sum2+sum3;
}