Fixed issues building 64-bit Windows binary

--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%403783
This commit is contained in:
Sam Lantinga 2009-09-05 23:37:35 +00:00
parent d4dca0dbc5
commit d036689ab0
9 changed files with 37 additions and 33 deletions

View file

@ -1342,7 +1342,7 @@ SDL_vsnprintf(char *text, size_t maxlen, const char *fmt, va_list ap)
}
*text = '\0';
return (text - textstart);
return (int)(text - textstart);
}
#endif
/* vi: set ts=4 sw=4 expandtab: */