1
0
Fork 0

Fix a small oops. We need to convert values from network byte order before

trying to use them.
This commit is contained in:
curt 2005-08-23 21:38:49 +00:00
parent cf0d6af66e
commit 2584ecaaf9

View file

@ -307,6 +307,7 @@ void FGNetCtrls2Props( FGNetCtrls *net, bool honor_freezes,
net->flaps_power = htonl(net->flaps_power);
net->flap_motor_ok = htonl(net->flap_motor_ok);
net->num_engines = htonl(net->num_engines);
for ( i = 0; i < (int)net->num_engines; ++i ) {
net->master_bat[i] = htonl(net->master_bat[i]);
net->master_alt[i] = htonl(net->master_alt[i]);
@ -324,12 +325,11 @@ void FGNetCtrls2Props( FGNetCtrls *net, bool honor_freezes,
net->oil_press_status[i] = htonl(net->oil_press_status[i]);
net->fuel_pump_ok[i] = htonl(net->fuel_pump_ok[i]);
}
net->num_engines = htonl(net->num_engines);
net->num_tanks = htonl(net->num_tanks);
for ( i = 0; i < FGNetCtrls::FG_MAX_TANKS; ++i ) {
net->fuel_selector[i] = htonl(net->fuel_selector[i]);
}
net->num_tanks = htonl(net->num_tanks);
net->cross_feed = htonl(net->cross_feed);
htond(net->brake_left);