Changeset 10333 in ntrip
- Timestamp:
- Feb 13, 2024, 10:04:05 PM (9 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/PPP/pppClient.cpp
r10332 r10333 265 265 } 266 266 267 if ((numBancroft = _usedSystems.value('G')) > _opt->_minObs) {267 if ((numBancroft = _usedSystems.value('G')) >= _opt->_minObs) { 268 268 sysBancroft = 'G'; 269 269 } 270 else if ((numBancroft = _usedSystems.value('E')) > _opt->_minObs) {270 else if ((numBancroft = _usedSystems.value('E')) >= _opt->_minObs) { 271 271 sysBancroft = 'E'; 272 272 } 273 else if ((numBancroft = _usedSystems.value('C')) > _opt->_minObs) {273 else if ((numBancroft = _usedSystems.value('C')) >= _opt->_minObs) { 274 274 sysBancroft = 'C'; 275 275 } 276 else if ((numBancroft = _usedSystems.value('R')) > _opt->_minObs) {276 else if ((numBancroft = _usedSystems.value('R')) >= _opt->_minObs) { 277 277 sysBancroft = 'R'; 278 278 }
Note:
See TracChangeset
for help on using the changeset viewer.