Skip to content

Commit

Permalink
CTR Fix
Browse files Browse the repository at this point in the history
CTR was read a Class C, changed oeder of String compare
  • Loading branch information
AlphaLima committed May 29, 2016
1 parent 8059d72 commit 6f3bf39
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Common/Source/LKAirspace.cpp
Expand Up @@ -35,7 +35,6 @@ static const TCHAR* k_strAreaStart[k_nAreaCount] = {
_T("R"),
_T("Q"),
_T("P"),
_T("CTR"),
_T("A"),
_T("B"),
_T("C"),
Expand All @@ -45,14 +44,14 @@ static const TCHAR* k_strAreaStart[k_nAreaCount] = {
_T("E"),
_T("F"),
_T("G"),
_T("CTR"),
_T("TMZ"),
_T("RMZ")
};
static const int k_nAreaType[k_nAreaCount] = {
RESTRICT,
DANGER,
PROHIBITED,
CTR,
CLASSA,
CLASSB,
CLASSC,
Expand All @@ -62,6 +61,7 @@ static const int k_nAreaType[k_nAreaCount] = {
CLASSE,
CLASSF,
CLASSG,
CTR,
CLASSTMZ,
CLASSRMZ
};
Expand Down

0 comments on commit 6f3bf39

Please sign in to comment.