make indent
--HG-- extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%402345
This commit is contained in:
parent
25541b2329
commit
554147b6c7
18 changed files with 142 additions and 122 deletions
|
@ -298,8 +298,8 @@ SDL_revcpy(void *dst, const void *src, size_t len)
|
|||
{
|
||||
char *srcp = (char *) src;
|
||||
char *dstp = (char *) dst;
|
||||
srcp += len-1;
|
||||
dstp += len-1;
|
||||
srcp += len - 1;
|
||||
dstp += len - 1;
|
||||
while (len--) {
|
||||
*dstp-- = *srcp--;
|
||||
}
|
||||
|
@ -872,7 +872,8 @@ SDL_sscanf(const char *text, const char *fmt, ...)
|
|||
++index;
|
||||
}
|
||||
if (text[index] == '0') {
|
||||
if (SDL_tolower((unsigned char) text[index + 1]) == 'x') {
|
||||
if (SDL_tolower((unsigned char) text[index + 1])
|
||||
== 'x') {
|
||||
radix = 16;
|
||||
} else {
|
||||
radix = 8;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue