Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
Both testsprite and testsprite2 use a grey background
  • Loading branch information
slouken committed Nov 26, 2008
1 parent a0bed18 commit 409dd9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/testsprite.c
Expand Up @@ -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);
Expand Down

0 comments on commit 409dd9a

Please sign in to comment.