aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2008-11-20 10:09:37 -0800
committerChris Robinson <[email protected]>2008-11-20 10:09:37 -0800
commiteefc18170da11f545390921385ecf2c9a7588d04 (patch)
tree9de5b4faa4afb096a03dd5779c8e7dbc064f3470
parent5f84c5339d47ec2583ab27cdc10baa80de85b34c (diff)
Fix a comment
-rw-r--r--Alc/alcReverb.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/Alc/alcReverb.c b/Alc/alcReverb.c
index cb23eaed..b4eaec80 100644
--- a/Alc/alcReverb.c
+++ b/Alc/alcReverb.c
@@ -185,9 +185,8 @@ static __inline ALvoid EarlyReflection(ALverbState *State, ALfloat in, ALfloat *
DelayLineIn(&State->Early.Delay[2], State->Offset, f[2]);
DelayLineIn(&State->Early.Delay[3], State->Offset, f[3]);
- // To decorrelate the output for stereo separation, the cyclical nature
- // of the feed path is exploited. The two outputs are obtained from the
- // inner delay lines.
+ // To decorrelate the output for stereo separation, the two outputs are
+ // obtained from the inner delay lines.
// Output is instant by using the inputs to them instead of taking the
// result of the two delay lines directly (f[0] and f[3] instead of d[1]
// and d[2]).