X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?a=blobdiff_plain;ds=sidebyside;f=progs%2Fdemos%2FLorenz%2Florenz.c;fp=progs%2Fdemos%2FLorenz%2Florenz.c;h=f4372d62f70f83f4a084d2f730b6e106b11b6b8a;hb=cba16355bd8a2ce3e957e680e657bfc87de2c6d7;hp=f2de979259e72fc6b524c14dbefbf58e6a5a35da;hpb=80f6de57f5364e1bfabb9650d20e970ea8ef5c81;p=freeglut diff --git a/progs/demos/Lorenz/lorenz.c b/progs/demos/Lorenz/lorenz.c index f2de979..f4372d6 100644 --- a/progs/demos/Lorenz/lorenz.c +++ b/progs/demos/Lorenz/lorenz.c @@ -141,15 +141,15 @@ void key_cb ( unsigned char key, int x, int y ) break ; case 'm' : case 'M' : /* Modify the Lorenz parameters */ - printf ( "Please enter new value for (default %f, currently %f): ", s0, sigma ) ; + printf ( "Please enter new value for (default %lf, currently %lf): ", s0, sigma ) ; fgets ( inputline, INPUT_LINE_LENGTH-1, stdin ) ; sscanf ( inputline, "%lf", &sigma ) ; - printf ( "Please enter new value for (default %f, currently %f): ", b0, b ) ; + printf ( "Please enter new value for (default %lf, currently %lf): ", b0, b ) ; fgets ( inputline, INPUT_LINE_LENGTH-1, stdin ) ; sscanf ( inputline, "%lf", &b ) ; - printf ( "Please enter new value for (default %f, currently %f): ", r0, r ) ; + printf ( "Please enter new value for (default %lf, currently %lf): ", r0, r ) ; fgets ( inputline, INPUT_LINE_LENGTH-1, stdin ) ; sscanf ( inputline, "%lf", &r ) ; @@ -257,9 +257,9 @@ void display_cb ( void ) /* Print the distance between the two points */ glColor3d ( 1.0, 1.0, 1.0 ) ; /* White */ - sprintf ( string, "Distance: %10.6f", distance ) ; + sprintf ( string, "Distance: %10.6lf", distance ) ; glRasterPos2i ( 10, 10 ) ; - glutBitmapString ( GLUT_BITMAP_HELVETICA_12, (unsigned char*)string ) ; + glutBitmapString ( GLUT_BITMAP_HELVETICA_12, (unsigned char *)string ) ; glutSwapBuffers(); } @@ -347,7 +347,7 @@ int main ( int argc, char *argv[] ) glutMainLoop () ; #ifdef WIN32 - /* DUMP MEMORY LEAK INFORMATION */ + /* DUMP MEMORY LEAK INFORMATION */ _CrtDumpMemoryLeaks () ; #endif