]> git.mxchange.org Git - flightgear.git/blobdiff - Main/GLTKkey.c
Restructuring make, adding automatic "make dep" support.
[flightgear.git] / Main / GLTKkey.c
index 917756581c4339b0a96825b04cd0843fd93d282a..36595607feca05f59befa89b98ef70a30655a1ad 100644 (file)
@@ -3,6 +3,22 @@
  *
  * Written by Curtis Olson, started May 1997.
  *
+ * Copyright (C) 1997  Curtis L. Olson  - curt@infoplane.com
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License as
+ * published by the Free Software Foundation; either version 2 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ *
  * $Id$
  * (Log is kept at end of this file)
  **************************************************************************/
@@ -14,7 +30,7 @@
 #include "gltk.h"
 
 #include "GLTKkey.h"
-#include "../aircraft/aircraft.h"
+#include "../Aircraft/aircraft.h"
 
 
 /* Handle keyboard events */
@@ -47,6 +63,7 @@ GLenum GLTKkey(int k, GLenum mask) {
        return GL_TRUE;
     case TK_s:
        c->throttle[0] += 0.05;
+       return GL_TRUE;
     case TK_ESCAPE:
        tkQuit();
     }
@@ -58,9 +75,19 @@ GLenum GLTKkey(int k, GLenum mask) {
 
 
 /* $Log$
-/* Revision 1.1  1997/05/21 15:57:49  curt
-/* Renamed due to added GLUT support.
+/* Revision 1.4  1997/06/26 19:08:32  curt
+/* Restructuring make, adding automatic "make dep" support.
 /*
+ * Revision 1.3  1997/06/21 17:12:52  curt
+ * Capitalized subdirectory names.
+ *
+ * Revision 1.2  1997/05/23 15:40:24  curt
+ * Added GNU copyright headers.
+ * Fog now works!
+ *
+ * Revision 1.1  1997/05/21 15:57:49  curt
+ * Renamed due to added GLUT support.
+ *
  * Revision 1.2  1997/05/19 18:22:41  curt
  * Parameter tweaking ... starting to stub in fog support.
  *