Stub in controls for second engine master bat/alt switches.
This commit is contained in:
parent
795abb81a4
commit
e5a57189c9
1 changed files with 10 additions and 2 deletions
|
@ -1767,8 +1767,16 @@ bool FGATC610x::do_switches() {
|
|||
update_switch_matrix( board, switch_data, switch_matrix );
|
||||
|
||||
// master switches
|
||||
fgSetBool( "/controls/switches/master-bat", switch_matrix[board][5][1] );
|
||||
fgSetBool( "/controls/switches/master-alt", switch_matrix[board][4][1] );
|
||||
fgSetBool( "/controls/engines/engine[0]/master-bat",
|
||||
switch_matrix[board][5][1] );
|
||||
fgSetBool( "/controls/engines/engine[1]/master-bat",
|
||||
switch_matrix[board][5][1] );
|
||||
|
||||
fgSetBool( "/controls/engines/engine[0]/master-alt",
|
||||
switch_matrix[board][4][1] );
|
||||
fgSetBool( "/controls/engines/engine[1]/master-alt",
|
||||
switch_matrix[board][4][1] );
|
||||
|
||||
fgSetBool( "/controls/switches/master-avionics",
|
||||
switch_matrix[board][0][3] );
|
||||
|
||||
|
|
Loading…
Reference in a new issue