X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=Astro%2Fsky.c;h=a7a7b098c6d38a66eaf9c344513363e069b2fab0;hb=f1ec224b73dc81dc487836bbd45b6e21c10df0a5;hp=4de37c7369d10e2fbf7beaf02ed1b824c363d00c;hpb=a9fdc0e3415420bdfd2d90531447ddeb4390c2ad;p=flightgear.git diff --git a/Astro/sky.c b/Astro/sky.c index 4de37c736..a7a7b098c 100644 --- a/Astro/sky.c +++ b/Astro/sky.c @@ -72,7 +72,7 @@ static float outer_color[12][4]; /* Calculate the sky structure vertices */ -void fgSkyVerticesInit() { +void fgSkyVerticesInit( void ) { float theta; int i; @@ -101,7 +101,7 @@ void fgSkyVerticesInit() { /* (Re)calculate the sky colors at each vertex */ -void fgSkyColorsInit() { +void fgSkyColorsInit( void ) { struct fgLIGHT *l; float sun_angle, diff; float outer_param[3], outer_amt[3], outer_diff[3]; @@ -224,7 +224,7 @@ void fgSkyColorsInit() { /* Initialize the sky structure and colors */ -void fgSkyInit() { +void fgSkyInit( void ) { printf("Initializing the sky\n"); fgSkyVerticesInit(); @@ -236,7 +236,7 @@ void fgSkyInit() { /* Draw the Sky */ -void fgSkyRender() { +void fgSkyRender( void ) { struct fgFLIGHT *f; struct fgLIGHT *l; struct fgVIEW *v; @@ -329,9 +329,13 @@ void fgSkyRender() { /* $Log$ -/* Revision 1.1 1998/01/07 03:16:19 curt -/* Moved from .../Src/Scenery/ to .../Src/Astro/ +/* Revision 1.2 1998/01/19 18:40:17 curt +/* Tons of little changes to clean up the code and to remove fatal errors +/* when building with the c++ compiler. /* + * Revision 1.1 1998/01/07 03:16:19 curt + * Moved from .../Src/Scenery/ to .../Src/Astro/ + * * Revision 1.11 1997/12/30 22:22:38 curt * Further integration of event manager. *