aboutsummaryrefslogtreecommitdiff
path: root/sound/softsynth/mt32/freeverb.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'sound/softsynth/mt32/freeverb.cpp')
-rw-r--r--sound/softsynth/mt32/freeverb.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/sound/softsynth/mt32/freeverb.cpp b/sound/softsynth/mt32/freeverb.cpp
index 42865c1e71..0a75e7bc70 100644
--- a/sound/softsynth/mt32/freeverb.cpp
+++ b/sound/softsynth/mt32/freeverb.cpp
@@ -26,7 +26,7 @@
// Comb filter implementation
//
-// Written by
+// Written by
// http://www.dreampoint.co.uk
// This code is public domain
@@ -39,7 +39,7 @@ comb::comb() {
}
void comb::setbuffer(float *buf, int size) {
- buffer = buf;
+ buffer = buf;
bufsize = size;
}
@@ -49,7 +49,7 @@ void comb::mute() {
}
void comb::setdamp(float val) {
- damp1 = val;
+ damp1 = val;
damp2 = 1 - val;
}
@@ -72,7 +72,7 @@ allpass::allpass() {
}
void allpass::setbuffer(float *buf, int size) {
- buffer = buf;
+ buffer = buf;
bufsize = size;
}