cwEuCon.cpp : Change mute id's to indicate source.

This commit is contained in:
kevin.larke 2020-05-19 20:51:20 -04:00
parent c94990cb00
commit 2b73b7b416

View File

@ -547,13 +547,13 @@ namespace cw
type = 'T'; type = 'T';
break; break;
case kMuteEuconId: case kFdrMuteEuconId:
{ {
type = 'M'; type = 'M';
fb->chA[chIdx].muteFl = !fb->chA[chIdx].muteFl; fb->chA[chIdx].muteFl = !fb->chA[chIdx].muteFl;
if(_send_app_msg(fb, chIdx, kMuteEuconId, !fb->chA[chIdx].muteFl ) != kOkRC ) if(_send_app_msg(fb, chIdx, kEucMuteEuconId, !fb->chA[chIdx].muteFl ) != kOkRC )
cwLogError(kOpFailRC,"Send mute msg failed."); cwLogError(kOpFailRC,"Send mute msg failed.");
} }
break; break;