Reto Schneider <code@reto-schneider.ch> [Wed, 08 Apr 2015 12:14:36 +0200] rev 9573
Remove trailing spaces in Android source code.
Wander Lairson Costa <wander.lairson@gmail.com> [Thu, 05 Jun 2014 11:55:37 -0300] rev 9572
Add an entry for X11 "/" key for Brazilian keyboard.
SDL2 reports the following message when we type the "/" on br-abnt2 keyboards:
The key you just pressed is not recognized by SDL. \
To help get this fixed, please report this to the SDL mailing list \
<sdl@libsdl.org> X11 KeyCode 97 (89), X11 KeySym 0x2F (slash).
That's because the corresponding entry in the scancodes table is
marked with value SDL_SCANCODE_UNKNOWN.
This commit fixes that adding the value SDL_SCANCODE_SLASH for this entry.
Ryan C. Gordon <icculus@icculus.org> [Wed, 22 Apr 2015 20:25:19 -0400] rev 9571
CMake: Slightly better fix for installation target (thanks, Anthony!).
Fixes Bugzilla #2474.
Philipp Wiesemann <philipp.wiesemann@arcor.de> [Wed, 22 Apr 2015 21:43:22 +0200] rev 9570
Fixed typos in header file documentation comments.
Philipp Wiesemann <philipp.wiesemann@arcor.de> [Mon, 20 Apr 2015 20:03:40 +0200] rev 9569
Fixed SDL_GameControllerOpen() and SDL_JoystickOpen() documentation in header.
Philipp Wiesemann <philipp.wiesemann@arcor.de> [Mon, 20 Apr 2015 20:03:26 +0200] rev 9568
Fixed unsupported doxygen tag in header file.
Ryan C. Gordon <icculus@icculus.org> [Mon, 20 Apr 2015 13:43:24 -0400] rev 9567
Cleaned up the macro salsa in the Windows timer code.
- Removed USE_GETTICKCOUNT code; it's never used now.
- Reduced the number of preprocessor checks for WinRT.
- Renamed timeSetPeriod() so it doesn't look like a Win32 API call.
Ryan C. Gordon <icculus@icculus.org> [Mon, 20 Apr 2015 12:22:44 -0400] rev 9566
Windows: Always set the system timer resolution to 1ms by default.
An existing hint lets apps that don't need the timer resolution changed avoid
this, to save battery, etc, but this fixes several problems in timing, audio
callbacks not firing fast enough, etc.
Fixes Bugzilla #2944.
Patrice Mandin <patmandin@gmail.com> [Fri, 17 Apr 2015 21:41:11 +0200] rev 9565
Allocate audio buffer for application mixing in FastRAM if available. Contributed by Daniel Illgen.
Patrice Mandin <patmandin@gmail.com> [Fri, 17 Apr 2015 21:32:45 +0200] rev 9564
Do not allocate in STRAM if TTRAM allocation is mandatory