From 130266af7bb566394d57d25ba424542b08bf51b9 Mon Sep 17 00:00:00 2001 From: root Date: Tue, 30 Apr 2019 06:58:24 +0000 Subject: [PATCH] Fix to make the AND Logic work on all modes This fixes #8118 --- src/main/fc/rc_modes.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/fc/rc_modes.c b/src/main/fc/rc_modes.c index cd881d8b5d..040e780502 100644 --- a/src/main/fc/rc_modes.c +++ b/src/main/fc/rc_modes.c @@ -154,7 +154,7 @@ void updateActivatedModes(void) updateMasksForMac(mac, &andMask, &newMask, bActive); } - bitArrayXor(&newMask, sizeof(&newMask), &newMask, &andMask); + bitArrayXor(&newMask, sizeof(newMask), &newMask, &andMask); rcModeUpdate(&newMask);