Branch :
| Author | Commit | Date | CI | Message |
|---|---|---|---|---|
| 35ab76d0 | 2013-12-11 21:17:24 | Fixed bug 2050 - Obvious bugs in SDL_ltoa and SDL_lltoa pjz SDL_ltoa(-2147483648,s,10) only returns "-" because there is a bug in the code: if ( value < 0 ) { *bufp++ = '-'; value = -value; } but -(-2147483648) is still -2147483648 (0x80000000) as signed int (or long), so the following loop doesn't run at all. Similar bug are also in SDL_lltoa. BTW, there is no sanity check for radix. | ||
| d01ad02b | 2013-12-09 15:17:20 | Hook up SDL_acos and SDL_asin properly. | ||
| f848adff | 2013-11-29 10:06:08 | Improve Android pause/resume behavior. |