]> git.mxchange.org Git - flightgear.git/commitdiff
Some initial mods to work better in a timer environment.
authorcurt <curt>
Thu, 29 May 1997 12:30:19 +0000 (12:30 +0000)
committercurt <curt>
Thu, 29 May 1997 12:30:19 +0000 (12:30 +0000)
Slew/slew.c

index e548a39825d00228a1b26e3a053eb456c0ece18a..9c27575daa810da176331ce7da37f190a9420f3d 100644 (file)
@@ -71,7 +71,7 @@ void fgSlewUpdate() {
     f = &current_aircraft.flight;
     c = &current_aircraft.controls;
 
-    f->Psi += c->aileron;
+    f->Psi += ( c->aileron / 8 );
     if ( f->Psi > PI2 ) {
        f->Psi -= PI2;
     } else if ( f->Psi < 0 ) {
@@ -86,9 +86,12 @@ void fgSlewUpdate() {
 
 
 /* $Log$
-/* Revision 1.1  1997/05/29 02:29:42  curt
-/* Moved to their own directory.
+/* Revision 1.2  1997/05/29 12:30:19  curt
+/* Some initial mods to work better in a timer environment.
 /*
+ * Revision 1.1  1997/05/29 02:29:42  curt
+ * Moved to their own directory.
+ *
  * Revision 1.2  1997/05/23 15:40:37  curt
  * Added GNU copyright headers.
  *