[Plib-cvs] plib/src/js jsLinuxOld.cxx,1.4,1.5
Brought to you by:
sjbaker
From: John F. F. <fa...@us...> - 2005-07-16 17:28:05
|
Update of /cvsroot/plib/plib/src/js In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv477 Modified Files: jsLinuxOld.cxx Log Message: Fixing a Linux joystick versioning bug that caused two files to be included if the version was greater than 0x010000 Index: jsLinuxOld.cxx =================================================================== RCS file: /cvsroot/plib/plib/src/js/jsLinuxOld.cxx,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- jsLinuxOld.cxx 20 Oct 2004 23:49:33 -0000 1.4 +++ jsLinuxOld.cxx 16 Jul 2005 17:27:51 -0000 1.5 @@ -27,7 +27,7 @@ #include <linux/joystick.h> -#if !defined(JS_VERSION) || JS_VERSION >= 0x010000 +#if !defined(JS_VERSION) || JS_VERSION < 0x010000 #include <fcntl.h> #include <sys/ioctl.h> |