Skip to content

Commit

Permalink
Callsign is now in brackets if the aircraft is assumed
Browse files Browse the repository at this point in the history
  • Loading branch information
pierr3 committed Oct 28, 2020
1 parent 3509065 commit 45d5959
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions vSMR/SMRRadar.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1329,6 +1329,10 @@ map<string, string> CSMRRadar::GenerateTagData(CRadarTarget rt, CFlightPlan fp,
callsign = callsign + ">>";
break;

case FLIGHT_PLAN_STATE_ASSUMED:
callsign = "[" + callsign + "]";
break;

}
}

Expand Down

0 comments on commit 45d5959

Please sign in to comment.