]> git.mxchange.org Git - flightgear.git/blobdiff - Main/GLUTkey.cxx
C++ ifying ...
[flightgear.git] / Main / GLUTkey.cxx
index 7af29356030e4909f22896128e7ee5ab7d481b2c..ebc72535e5ec2770e06f511cf70a70faeed8092e 100644 (file)
@@ -35,7 +35,7 @@
 #include <stdio.h>
 #include <stdlib.h>
 
-#include <Aircraft/aircraft.h>
+#include <Aircraft/aircraft.hxx>
 #include <Astro/solarsystem.hxx>
 #include <Astro/sky.hxx>
 #include <Autopilot/autopilot.hxx>
@@ -46,7 +46,7 @@
 #include <Objects/material.hxx>
 #include <PUI/pu.h>
 #include <Time/light.hxx>
-#include <Weather/weather.h>
+#include <Weather/weather.hxx>
 
 #include "GLUTkey.hxx"
 #include "options.hxx"
@@ -94,6 +94,12 @@ void GLUTkey(unsigned char k, int x, int y) {
        case 8: // Ctrl-H key
            fgAPToggleHeading();
            return;
+       case 19: // Ctrl-S key
+           fgAPToggleAutoThrottle();
+           return;
+       case 20: // Ctrl-T key
+           fgAPToggleTerrainFollow();
+           return;
        case 49: // numeric keypad 1
            v->goal_view_offset = FG_PI * 0.75;
            return;
@@ -375,6 +381,15 @@ void GLUTspecialkey(int k, int x, int y) {
 
 
 // $Log$
+// Revision 1.28  1998/10/17 01:34:20  curt
+// C++ ifying ...
+//
+// Revision 1.27  1998/10/02 12:46:46  curt
+// Added an "auto throttle"
+//
+// Revision 1.26  1998/10/01 00:38:04  curt
+// More altitude hold tweaks.
+//
 // Revision 1.25  1998/09/29 02:03:36  curt
 // Autopilot mods.
 //