Fixed compiler warnings

This commit is contained in:
Sam Lantinga 2011-03-06 21:17:09 -08:00
parent 253835bdd2
commit 924f55eebe
4 changed files with 87 additions and 132 deletions

View file

@ -54,7 +54,7 @@ SDL_Blit_Slow(SDL_BlitInfo * info)
incx = (info->src_w << 16) / info->dst_w;
while (info->dst_h--) {
Uint8 *src;
Uint8 *src = 0;
Uint8 *dst = (Uint8 *) info->dst;
int n = info->dst_w;
srcx = -1;