# HG changeset patch # User Sam Lantinga # Date 1228234221 0 # Node ID cf271ff76061ced4773fd3dcde673265b6145b29 # Parent c4eccbd21d16274987e67e667265dcf740dd397c Removed unused function diff -r c4eccbd21d16 -r cf271ff76061 test/testalpha.c --- a/test/testalpha.c Tue Dec 02 16:09:58 2008 +0000 +++ b/test/testalpha.c Tue Dec 02 16:10:21 2008 +0000 @@ -328,23 +328,6 @@ SDL_UpdateRects(screen, 2, updates); } -void -WarpSprite(SDL_Surface * screen, int x, int y) -{ - SDL_Rect updates[2]; - - /* Erase, move, Draw, update */ - updates[0] = position; - SDL_BlitSurface(backing, NULL, screen, &updates[0]); - position.x = x - sprite->w / 2; /* Center about X */ - position.y = y - sprite->h / 2; /* Center about Y */ - updates[1] = position; - SDL_BlitSurface(screen, &updates[1], backing, NULL); - updates[1] = position; - SDL_BlitSurface(sprite, NULL, screen, &updates[1]); - SDL_UpdateRects(screen, 2, updates); -} - int main(int argc, char *argv[]) {