X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=Main%2FGLUTkey.c;h=53df0817e5db48f09d9e1f91724d1f79a623a4b5;hb=89a981160759f5992111f67e48bce6768bca6595;hp=5a89d200efa3509726151d3cf5171d775a75099a;hpb=90e39d537ff92215a58b7ce21a013c7f18deea91;p=flightgear.git diff --git a/Main/GLUTkey.c b/Main/GLUTkey.c index 5a89d200e..53df0817e 100644 --- a/Main/GLUTkey.c +++ b/Main/GLUTkey.c @@ -45,8 +45,8 @@ extern int show_hud; /* HUD state */ /* Handle keyboard events */ void GLUTkey(unsigned char k, int x, int y) { - struct control_params *c; - struct weather_params *w; + struct CONTROLS *c; + struct WEATHER *w; c = ¤t_aircraft.controls; w = ¤t_weather; @@ -142,7 +142,7 @@ void GLUTkey(unsigned char k, int x, int y) { /* Handle "special" keyboard events */ void GLUTspecialkey(int k, int x, int y) { - struct control_params *c; + struct CONTROLS *c; c = ¤t_aircraft.controls; @@ -220,9 +220,12 @@ void GLUTspecialkey(int k, int x, int y) { /* $Log$ -/* Revision 1.19 1997/08/25 20:27:21 curt -/* Merged in initial HUD and Joystick code. +/* Revision 1.20 1997/08/27 03:30:13 curt +/* Changed naming scheme of basic shared structures. /* + * Revision 1.19 1997/08/25 20:27:21 curt + * Merged in initial HUD and Joystick code. + * * Revision 1.18 1997/08/22 21:34:38 curt * Doing a bit of reorganizing and house cleaning. *