From 7f29e49691725e75887bb2258d21735934578a21 Mon Sep 17 00:00:00 2001 From: Volker Fischer Date: Sun, 10 Dec 2006 09:44:00 +0000 Subject: [PATCH] bug fix --- src/channel.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/channel.cpp b/src/channel.cpp index 86c21636..a5c500f6 100755 --- a/src/channel.cpp +++ b/src/channel.cpp @@ -334,7 +334,8 @@ void CChannelSet::GetBlockAllConC ( CVector& vecChanID, // The second index of "vecvecdGains" does not represent // the channel ID! Therefore we have to use "vecChanID" to // query the IDs of the currently connected channels - vecvecdGains[i][j] = vecChannels[i].GetGain( vecChanID[j] ); + vecvecdGains[i][j] = + vecChannels[ vecChanID[i] ].GetGain( vecChanID[j] ); } }