Ryan C. Gordon <icculus@icculus.org> [Sun, 18 Mar 2007 22:37:10 +0000] rev 3924
Mac OS X joystick support: don't ignore kHIDUsage_GD_MultiAxisController
devices, since they are probably joysticks, or joystick-like things.
See 3Dconnexion's SpaceNavigator for an example of such a device:
http://www.3dconnexion.com/products/3a1d.php
Thanks to Laurence Passmore for the fix.
Ryan C. Gordon <icculus@icculus.org> [Wed, 14 Mar 2007 01:09:24 +0000] rev 3923
Linux fbcon: don't include asm/page.h if we know getpagesize() exists, since
we don't need it, and doing so will hit #error lines on some CPU archs.
Thanks to Mike Frysinger for the heads up.
Fixes Bugzilla #414.
Ryan C. Gordon <icculus@icculus.org> [Fri, 23 Feb 2007 00:37:07 +0000] rev 3922
Removed some debug printf() calls I accidentally added to Subversion.
Ryan C. Gordon <icculus@icculus.org> [Tue, 20 Feb 2007 22:57:28 +0000] rev 3921
Merged r2987:2988 from trunk/SDL: buggy Sidewinder ID added to linux joysticks.
Ryan C. Gordon <icculus@icculus.org> [Tue, 20 Feb 2007 21:05:12 +0000] rev 3920
Need to set DLSCL_ADMINISTRATIVE coop level in directfb driver, or YUV overlay
creation will fail in newer DirectFB versions.
Fixes Bugzilla #394.
Ryan C. Gordon <icculus@icculus.org> [Fri, 16 Feb 2007 04:56:17 +0000] rev 3919
SDL_SetWindowCaption() on Windows: try to use the unicode
SetWindowText() if it exists in user32.dll, and fallback to converting
to the current codepage (instead of latin1) if not.
Fixes Bugzilla #365.
Ryan C. Gordon <icculus@icculus.org> [Fri, 16 Feb 2007 03:50:42 +0000] rev 3918
Minor const correctness patch to SDL_iconv.
Ryan C. Gordon <icculus@icculus.org> [Thu, 15 Feb 2007 23:50:45 +0000] rev 3917
Patched fbcon to compile on newer Linux kernels that don't #define PAGE_SIZE,
since a memory page's size may vary on various architectures and kernel
configurations.
Will use getpagesize() if it exists, the PAGE_SIZE #define from older kernels
if that doesn't, and #error out if that's not there either...but it's
probably 4096 in that case. We may revisit this.
Fixes Bugzilla #392.
Ryan C. Gordon <icculus@icculus.org> [Thu, 15 Feb 2007 11:06:22 +0000] rev 3916
Force chars to unsigned chars in SDL_string.c, so platforms that expect
these to not be negative, when not EOF, work.
Fixes Bugzilla #338.
Ryan C. Gordon <icculus@icculus.org> [Wed, 14 Feb 2007 10:40:24 +0000] rev 3915
Removed the contents of the BUGS file, as most (all?) of the issues were
either long-since fixed or something that will never get fixed.
The file now points people to Bugzilla and the mailing list.
Fixes Bugzilla #352.