Fixed bug where starter background wouldn't get flipped. (y, not x! d'oh!)

This commit is contained in:
William Kendrick 2004-09-22 05:11:58 +00:00
parent 4d3064b7d0
commit 01111df2d3
2 changed files with 2 additions and 7 deletions

View file

@ -12973,7 +12973,7 @@ void flip_starter(void)
src.h = 1;
dest.x = 0;
dest.y = orig->h - x - 1;
dest.y = orig->h - y - 1;
SDL_BlitSurface(orig, &src, img_starter_bkgd, &dest);
}