From 409dd9abaef2d43a75a1a78c14b808754db41409 Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Wed, 26 Nov 2008 15:52:00 +0000 Subject: [PATCH] Both testsprite and testsprite2 use a grey background --- test/testsprite.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/testsprite.c b/test/testsprite.c index b1303845f..91ff777cb 100644 --- a/test/testsprite.c +++ b/test/testsprite.c @@ -247,7 +247,7 @@ main(int argc, char *argv[]) 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);