formatting
This commit is contained in:
parent
18980f8419
commit
eb0cd03926
1 changed files with 85 additions and 86 deletions
|
@ -17,7 +17,7 @@ var warnings = std.Vector.new([
|
|||
]);
|
||||
|
||||
var leftmemos = std.Vector.new([
|
||||
var company_alert = warning.new(msg: "COMPANY ALERT", active: 0, colour: "g", aural: "buzzer", light: "none", noRepeat: 0), # Not yet implemented, buzzer sound
|
||||
var company_alert = warning.new(msg: "COMPANY ALERT", active: 0, colour: "g", aural: "buzz", light: "none", noRepeat: 0), # Not yet implemented, buzzer sound
|
||||
var refuelg = warning.new(msg: "REFUELG", active: 0, colour: "g", aural: "none", light: "none", noRepeat: 0),
|
||||
var irs_in_align = warning.new(msg: "IRS IN ALIGN", active: 0, colour: "g", aural: "none", light: "none", noRepeat: 0), # Not yet implemented
|
||||
var gnd_splrs = warning.new(msg: "GND SPLRS ARMED", active: 0, colour: "g", aural: "none", light: "none", noRepeat: 0),
|
||||
|
@ -41,16 +41,16 @@ var specialLines = std.Vector.new([
|
|||
]);
|
||||
|
||||
var secondaryFailures = std.Vector.new([
|
||||
var secondary_bleed = memo.new(msg: "•AIR BLEED", active: 0, colour: "a"),
|
||||
var secondary_press = memo.new(msg: "•CAB PRESS", active: 0, colour: "a"),
|
||||
var secondary_vent = memo.new(msg: "•AVNCS VENT", active: 0, colour: "a"),
|
||||
var secondary_elec = memo.new(msg: "•ELEC", active: 0, colour: "a"),
|
||||
var secondary_hyd = memo.new(msg: "•HYD", active: 0, colour: "a"),
|
||||
var secondary_fuel = memo.new(msg: "•FUEL", active: 0, colour: "a"),
|
||||
var secondary_cond = memo.new(msg: "•AIR COND", active: 0, colour: "a"),
|
||||
var secondary_brake = memo.new(msg: "•BRAKES", active: 0, colour: "a"),
|
||||
var secondary_wheel = memo.new(msg: "•WHEEL", active: 0, colour: "a"),
|
||||
var secondary_fctl = memo.new(msg: "•F/CTL", active: 0, colour: "a"),
|
||||
var secondary_bleed = memo.new(msg: "•AIR BLEED", active: 0, colour: "a"), # Not yet implemented
|
||||
var secondary_press = memo.new(msg: "•CAB PRESS", active: 0, colour: "a"), # Not yet implemented
|
||||
var secondary_vent = memo.new(msg: "•AVNCS VENT", active: 0, colour: "a"), # Not yet implemented
|
||||
var secondary_elec = memo.new(msg: "•ELEC", active: 0, colour: "a"), # Not yet implemented
|
||||
var secondary_hyd = memo.new(msg: "•HYD", active: 0, colour: "a"), # Not yet implemented
|
||||
var secondary_fuel = memo.new(msg: "•FUEL", active: 0, colour: "a"), # Not yet implemented
|
||||
var secondary_cond = memo.new(msg: "•AIR COND", active: 0, colour: "a"), # Not yet implemented
|
||||
var secondary_brake = memo.new(msg: "•BRAKES", active: 0, colour: "a"), # Not yet implemented
|
||||
var secondary_wheel = memo.new(msg: "•WHEEL", active: 0, colour: "a"), # Not yet implemented
|
||||
var secondary_fctl = memo.new(msg: "•F/CTL", active: 0, colour: "a"), # Not yet implemented
|
||||
]);
|
||||
|
||||
var memos = std.Vector.new([
|
||||
|
@ -96,7 +96,6 @@ var memos = std.Vector.new([
|
|||
]);
|
||||
|
||||
var clearWarnings = std.Vector.new();
|
||||
|
||||
var statusLim = std.Vector.new();
|
||||
var statusApprProc = std.Vector.new();
|
||||
var statusProc = std.Vector.new();
|
||||
|
|
Reference in a new issue