Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/channel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -334,11 +334,11 @@ float CChannel::GetPan ( const int iChanID )

void CChannel::SetChanInfo ( const CChannelCoreInfo& NChanInf )
{
bIsIdentified = true; // Indicate we have received channel info

// apply value (if different from previous one)
if ( ChannelInfo != NChanInf )
// apply value (if a new channel or different from previous one)
if ( !bIsIdentified || ChannelInfo != NChanInf )
{
bIsIdentified = true; // Indicate we have received channel info

ChannelInfo = NChanInf;

// fire message that the channel info has changed
Expand Down