Ref T397, Ref T297 VATSIM default is sending parts only

This commit is contained in:
Klaus Basan
2018-10-24 00:02:53 +02:00
parent 07f44fc520
commit 19b591dce8
2 changed files with 2 additions and 1 deletions

View File

@@ -68,7 +68,7 @@ namespace BlackMisc
const CFsdSetup &CFsdSetup::vatsimStandard()
{
static const CFsdSetup s(AllWithoutGnd);
static const CFsdSetup s(AllParts);
return s;
}

View File

@@ -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