Changeset 9097 in ntrip for branches/BNC_2.12/src


Ignore:
Timestamp:
Sep 3, 2020, 3:16:01 PM (4 years ago)
Author:
stuerze
Message:

bug fixed

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/BNC_2.12/src/bnccaster.cpp

    r9089 r9097  
    593593  }
    594594  else {
    595     if (ltMap[obs._prn] < minLockTime) {
    596       ltMap[obs._prn] = minLockTime;
     595    if (minLockTime < ltMap[obs._prn]) {
    597596      jcMap[obs._prn] += 1;
    598597      if (jcMap[obs._prn] > 9999) {
     
    600599      }
    601600    }
     601    ltMap[obs._prn] = minLockTime;
    602602  }
    603603  for (unsigned ii = 0; ii < obs._obs.size(); ii++) {
Note: See TracChangeset for help on using the changeset viewer.