[Plib-cvs] plib/src/js jsWindows.cxx,1.1,1.2
Brought to you by:
sjbaker
From: Wolfram K. <wol...@us...> - 2004-03-24 16:07:57
|
Update of /cvsroot/plib/plib/src/js In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25579 Modified Files: jsWindows.cxx Log Message: Removed compiler warning by adding a "#undef". Added comment. Index: jsWindows.cxx =================================================================== RCS file: /cvsroot/plib/plib/src/js/jsWindows.cxx,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- jsWindows.cxx 29 Nov 2002 19:39:48 -0000 1.1 +++ jsWindows.cxx 24 Mar 2004 15:57:09 -0000 1.2 @@ -25,6 +25,9 @@ #ifdef UL_WIN32 +// Since we use joyGetPosEx to request the joystick values, +// we have never more than 8 axes to worry about: +#undef _JS_MAX_AXES #define _JS_MAX_AXES 8 /* X,Y,Z,R,U,V,POV_X,POV_Y */ |