[Plib-cvs] plib/examples/src/pw pw_pui.cxx,1.4,1.5
Brought to you by:
sjbaker
From: Wolfram K. <wol...@us...> - 2004-03-24 17:29:41
|
Update of /cvsroot/plib/plib/examples/src/pw In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9811 Modified Files: pw_pui.cxx Log Message: Fixing compiler warning. Index: pw_pui.cxx =================================================================== RCS file: /cvsroot/plib/plib/examples/src/pw/pw_pui.cxx,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- pw_pui.cxx 24 Feb 2004 02:06:03 -0000 1.4 +++ pw_pui.cxx 24 Mar 2004 17:19:02 -0000 1.5 @@ -63,7 +63,7 @@ pwSetCallbacks ( kbFunc, msFunc, mpFunc, rsFunc, exFunc ) ; while ( 1 ) { - glClearColor ( 0.5, 0.1, 0.1, 1.0 ) ; + glClearColor ( 0.5f, 0.1f, 0.1f, 1.0f ) ; glClear ( GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT ) ; puDisplay () ; pwSwapBuffers () ; |