X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=Slew%2Fslew.c;h=3f81dfb1748cf8fd4678f0def8a937fdbe415a86;hb=89a981160759f5992111f67e48bce6768bca6595;hp=f8029e01b81191c58ac4c645713631e75d5e9bc3;hpb=90e39d537ff92215a58b7ce21a013c7f18deea91;p=flightgear.git diff --git a/Slew/slew.c b/Slew/slew.c index f8029e01b..3f81dfb17 100644 --- a/Slew/slew.c +++ b/Slew/slew.c @@ -44,7 +44,7 @@ /* reset flight params to a specific position */ void fgSlewInit(double pos_x, double pos_y, double pos_z, double heading) { - struct flight_params *f; + struct FLIGHT *f; f = ¤t_aircraft.flight; @@ -70,8 +70,8 @@ void fgSlewInit(double pos_x, double pos_y, double pos_z, double heading) { /* update position based on inputs, positions, velocities, etc. */ void fgSlewUpdate() { - struct flight_params *f; - struct control_params *c; + struct FLIGHT *f; + struct CONTROLS *c; f = ¤t_aircraft.flight; c = ¤t_aircraft.controls; @@ -91,9 +91,12 @@ void fgSlewUpdate() { /* $Log$ -/* Revision 1.5 1997/07/19 22:35:06 curt -/* Moved fiddled with PI to avoid compiler warnings. +/* Revision 1.6 1997/08/27 03:30:11 curt +/* Changed naming scheme of basic shared structures. /* + * Revision 1.5 1997/07/19 22:35:06 curt + * Moved fiddled with PI to avoid compiler warnings. + * * Revision 1.4 1997/06/21 17:12:51 curt * Capitalized subdirectory names. *