aboutsummaryrefslogtreecommitdiff
path: root/sound/softsynth/mt32/freeverb.h
diff options
context:
space:
mode:
Diffstat (limited to 'sound/softsynth/mt32/freeverb.h')
-rw-r--r--sound/softsynth/mt32/freeverb.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/sound/softsynth/mt32/freeverb.h b/sound/softsynth/mt32/freeverb.h
index 2a5d662a44..b34413f188 100644
--- a/sound/softsynth/mt32/freeverb.h
+++ b/sound/softsynth/mt32/freeverb.h
@@ -101,10 +101,10 @@ private:
inline float allpass::process(float input) {
float output;
float bufout;
-
+
bufout = buffer[bufidx];
undenormalise(bufout);
-
+
output = -input + bufout;
buffer[bufidx] = input + (bufout * feedback);
@@ -196,7 +196,7 @@ private:
float width;
float mode;
- // The following are all declared inline
+ // The following are all declared inline
// to remove the need for dynamic allocation
// with its subsequent error-checking messiness