# HG changeset patch # User Sam Lantinga # Date 1227714720 0 # Node ID 8c9fa61a521c14cef9dbdede26eaaf64276a8df2 # Parent 985001797115bdc6b9c32c9aa8f1a5e19fc031d0 Both testsprite and testsprite2 use a grey background diff -r 985001797115 -r 8c9fa61a521c test/testsprite.c --- a/test/testsprite.c Tue Nov 25 20:06:27 2008 +0000 +++ b/test/testsprite.c Wed Nov 26 15:52:00 2008 +0000 @@ -247,7 +247,7 @@ velocities[i].y = (rand() % (MAX_SPEED * 2 + 1)) - MAX_SPEED; } } - background = SDL_MapRGB(screen->format, 0x00, 0x00, 0x00); + background = SDL_MapRGB(screen->format, 0xA0, 0xA0, 0xA0); /* Print out information about our surfaces */ printf("Screen is at %d bits per pixel\n", screen->format->BitsPerPixel);