[Plib-cvs] plib/examples/src/ssg/majik majik_demo.cxx,1.4,1.5
Brought to you by:
sjbaker
From: Wolfram K. <wol...@us...> - 2002-08-30 13:08:40
|
Update of /cvsroot/plib/plib/examples/src/ssg/majik In directory usw-pr-cvs1:/tmp/cvs-serv24645 Modified Files: majik_demo.cxx Log Message: Removing compiler warnings due to implicit type conversions. Index: majik_demo.cxx =================================================================== RCS file: /cvsroot/plib/plib/examples/src/ssg/majik/majik_demo.cxx,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- majik_demo.cxx 9 Sep 2001 22:35:02 -0000 1.4 +++ majik_demo.cxx 30 Aug 2002 13:07:32 -0000 1.5 @@ -217,7 +217,7 @@ Set up some fog */ - glFogf ( GL_FOG_DENSITY, 0.015 / 100.0f ) ; + glFogf ( GL_FOG_DENSITY, 0.015f / 100.0f ) ; glFogfv( GL_FOG_COLOR , fogcol ) ; glFogf ( GL_FOG_START , 0.0 ) ; glFogi ( GL_FOG_MODE , GL_EXP2 ) ; |