From 19b591dce84b3a8ccdcc79b82fcd80347cec9891 Mon Sep 17 00:00:00 2001 From: Klaus Basan Date: Wed, 24 Oct 2018 00:02:53 +0200 Subject: [PATCH] Ref T397, Ref T297 VATSIM default is sending parts only --- src/blackmisc/network/fsdsetup.cpp | 2 +- src/blackmisc/network/fsdsetup.h | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/blackmisc/network/fsdsetup.cpp b/src/blackmisc/network/fsdsetup.cpp index c30236c12..cfea08908 100644 --- a/src/blackmisc/network/fsdsetup.cpp +++ b/src/blackmisc/network/fsdsetup.cpp @@ -68,7 +68,7 @@ namespace BlackMisc const CFsdSetup &CFsdSetup::vatsimStandard() { - static const CFsdSetup s(AllWithoutGnd); + static const CFsdSetup s(AllParts); return s; } diff --git a/src/blackmisc/network/fsdsetup.h b/src/blackmisc/network/fsdsetup.h index 8efd916ae..e7ff3204b 100644 --- a/src/blackmisc/network/fsdsetup.h +++ b/src/blackmisc/network/fsdsetup.h @@ -49,6 +49,7 @@ namespace BlackMisc AllSending = SendAircraftParts | SendInterimPositions | SendGndFlag, //!< all out AllReceive = ReceiveAircraftParts | ReceiveInterimPositions | ReceiveGndFlag, //!< all in All = AllReceive | AllSending, //!< all + AllParts = SendAircraftParts | ReceiveAircraftParts, //!< send/receive parts AllSendingWithoutGnd = SendAircraftParts | SendInterimPositions, //!< all out, but no gnd.flag AllReceiveWithoutGnd = ReceiveAircraftParts | ReceiveInterimPositions, //!< all in, but no gnd.flag AllWithoutGnd = AllReceiveWithoutGnd | AllSendingWithoutGnd //!< all, but no gnd.flag