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
Philipp Wiesemann <philipp.wiesemann@arcor.de> [Thu, 16 Apr 2015 22:04:35 +0200] rev 9563
Fixed return value of SDL_SaveBMP_RW() depending on set errors after NULL input.
If SDL_SaveBMP_RW() was called with NULL passed as SDL_RWops argument, different
values were returned depending on SDL_GetError(). If no error was set before the
call (or SDL_ClearError() was called) then 0 was returned. This is wrong because
nothing was saved. If an error was set before the call then -1 was returned.
This was fixed by directly returning -1 for NULL input instead of deciding based
on SDL_GetError(). No new error is set because this would otherwise override a
maybe more useful error set in SDL_RWFromFile() which is used by SDL_SaveBMP().
Philipp Wiesemann <philipp.wiesemann@arcor.de> [Thu, 16 Apr 2015 22:02:03 +0200] rev 9562
Linux: Removed not needed platform info from two entries of controller database.
Not needed because entries of this file are selected by conditional compilation.
Philipp Wiesemann <philipp.wiesemann@arcor.de> [Wed, 15 Apr 2015 21:29:55 +0200] rev 9561
Fixed typo in internal joystick documentation comments.
Philipp Wiesemann <philipp.wiesemann@arcor.de> [Wed, 15 Apr 2015 21:27:10 +0200] rev 9560
Emscripten: Simplified implementation of joystick update function.
The function was implemented using four loops but only needed two.
Philipp Wiesemann <philipp.wiesemann@arcor.de> [Wed, 15 Apr 2015 21:25:15 +0200] rev 9559
Emscripten: Fixed memory leak if SDL_GetPrefPath() failed.
Philipp Wiesemann <philipp.wiesemann@arcor.de> [Mon, 13 Apr 2015 20:52:38 +0200] rev 9558
Android: Fixed lint warning about order of elements in AndroidManifest.xml.
Philipp Wiesemann <philipp.wiesemann@arcor.de> [Mon, 13 Apr 2015 20:52:18 +0200] rev 9557
WinRT: Fixed format string for error message.