From 7356676c5b2ef2db2b147d223ee4db5dafe414e4 Mon Sep 17 00:00:00 2001 From: Oliver Jowett Date: Tue, 8 Sep 2020 23:30:24 +0800 Subject: [PATCH] Don't need conditional output on the stratux port, that's done in prepareWrite() --- net_io.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/net_io.c b/net_io.c index 3740301..64436b7 100644 --- a/net_io.c +++ b/net_io.c @@ -1000,8 +1000,7 @@ void modesQueueOutput(struct modesMessage *mm, struct aircraft *a) { // Delegate to the format-specific outputs, each of which makes its own decision about filtering messages modesSendSBSOutput(mm, a); - if (Modes.net_output_stratux_ports) - modesSendStratuxOutput(mm, a); + modesSendStratuxOutput(mm, a); modesSendRawOutput(mm, a); modesSendBeastVerbatimOutput(mm, a); modesSendBeastCookedOutput(mm, a);