Slightly more appropriate callsign for C-FGFS. These options still don't do anything at the moment mind!
This commit is contained in:
parent
c0137d93af
commit
2b459ebb3f
1 changed files with 4 additions and 4 deletions
|
@ -45,7 +45,7 @@ ATCMenuEntry::ATCMenuEntry() {
|
||||||
ATCMenuEntry::~ATCMenuEntry() {
|
ATCMenuEntry::~ATCMenuEntry() {
|
||||||
}
|
}
|
||||||
|
|
||||||
static char* t0 = "Request landing clearance";
|
static char* t0 = "Contact tower for landing";
|
||||||
static char* t1 = "Request departure clearance";
|
static char* t1 = "Request departure clearance";
|
||||||
static char* t2 = "Report Runway vacated";
|
static char* t2 = "Report Runway vacated";
|
||||||
static char** towerOptions = new char*[4];
|
static char** towerOptions = new char*[4];
|
||||||
|
@ -121,15 +121,15 @@ static void ATCDialogOK (puObject *me)
|
||||||
switch(atcDialogCommunicationOptions->getValue()) {
|
switch(atcDialogCommunicationOptions->getValue()) {
|
||||||
case 0:
|
case 0:
|
||||||
//cout << "Option 0 chosen\n";
|
//cout << "Option 0 chosen\n";
|
||||||
twr->RequestLandingClearance("golf bravo echo");
|
twr->RequestLandingClearance("charlie foxtrot sierra");
|
||||||
break;
|
break;
|
||||||
case 1:
|
case 1:
|
||||||
//cout << "Option 1 chosen\n";
|
//cout << "Option 1 chosen\n";
|
||||||
twr->RequestDepartureClearance("golf bravo echo");
|
twr->RequestDepartureClearance("charlie foxtrot sierra");
|
||||||
break;
|
break;
|
||||||
case 2:
|
case 2:
|
||||||
//cout << "Option 2 chosen\n";
|
//cout << "Option 2 chosen\n";
|
||||||
twr->ReportRunwayVacated("golf bravo echo");
|
twr->ReportRunwayVacated("charlie foxtrot sierra");
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Add table
Reference in a new issue