X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=Weather%2Fweather.c;h=2c783dd03c627497d9113d2498519f2a44ce132d;hb=89a981160759f5992111f67e48bce6768bca6595;hp=f3070b252aba8344399cc1d58b4a715a384225c6;hpb=90e39d537ff92215a58b7ce21a013c7f18deea91;p=flightgear.git diff --git a/Weather/weather.c b/Weather/weather.c index f3070b252..2c783dd03 100644 --- a/Weather/weather.c +++ b/Weather/weather.c @@ -31,7 +31,7 @@ /* Initialize the weather modeling subsystem */ void fgWeatherInit(void) { - struct weather_params *w; + struct WEATHER *w; w = ¤t_weather; @@ -44,8 +44,8 @@ void fgWeatherInit(void) { /* Update the weather parameters for the current position */ void fgWeatherUpdate(double lon, double lat, double alt) { - struct flight_params *f; - struct weather_params *w; + struct FLIGHT *f; + struct WEATHER *w; f = ¤t_aircraft.flight; w = ¤t_weather; @@ -58,9 +58,12 @@ void fgWeatherUpdate(double lon, double lat, double alt) { /* $Log$ -/* Revision 1.5 1997/08/22 21:34:42 curt -/* Doing a bit of reorganizing and house cleaning. +/* Revision 1.6 1997/08/27 03:30:38 curt +/* Changed naming scheme of basic shared structures. /* + * Revision 1.5 1997/08/22 21:34:42 curt + * Doing a bit of reorganizing and house cleaning. + * * Revision 1.4 1997/08/02 16:23:55 curt * Misc. tweaks. *