X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=Slew%2Fslew.c;h=33579555bea54a6a79244dc1f186b51199cc182f;hb=50c0f6c9e628b9e1ff6bfecfa4ce04084beaccb7;hp=7e7c1598a5ad2b6bf39afcecc80967e0de058c51;hpb=0bb3c2969a80b026b33b5852386c489a05773b3b;p=flightgear.git diff --git a/Slew/slew.c b/Slew/slew.c index 7e7c1598a..33579555b 100644 --- a/Slew/slew.c +++ b/Slew/slew.c @@ -44,9 +44,9 @@ /* reset flight params to a specific position */ void fgSlewInit(double pos_x, double pos_y, double pos_z, double heading) { - struct fgFLIGHT *f; + fgFLIGHT *f; - f = ¤t_aircraft.flight; + f = current_aircraft.flight; /* f->pos_x = pos_x; @@ -72,11 +72,11 @@ void fgSlewInit(double pos_x, double pos_y, double pos_z, double heading) { /* update position based on inputs, positions, velocities, etc. */ void fgSlewUpdate( void ) { - struct fgFLIGHT *f; - struct fgCONTROLS *c; + fgFLIGHT *f; + fgCONTROLS *c; - f = ¤t_aircraft.flight; - c = ¤t_aircraft.controls; + f = current_aircraft.flight; + c = current_aircraft.controls; /* f->Psi += ( c->aileron / 8 ); if ( f->Psi > FG_2PI ) { @@ -93,10 +93,14 @@ void fgSlewUpdate( void ) { /* $Log$ -/* Revision 1.10 1998/01/27 00:47:53 curt -/* Incorporated Paul Bleisch's new debug message -/* system and commandline/config file processing code. +/* Revision 1.11 1998/02/07 15:29:39 curt +/* Incorporated HUD changes and struct/typedef changes from Charlie Hotchkiss +/* /* + * Revision 1.10 1998/01/27 00:47:53 curt + * Incorporated Paul Bleisch's new debug message + * system and commandline/config file processing code. + * * Revision 1.9 1998/01/19 19:27:06 curt * Merged in make system changes from Bob Kuehne * This should simplify things tremendously.