Remove the two Warzone logo backdrops - they're really unprofessional and tacky, especially when there's already a Warzone logo at the top of the screen.

git-svn-id: https://warzone2100.svn.sourceforge.net/svnroot/warzone2100/trunk@8933 4a71c877-e1ca-e34f-864e-861f7616d084
master
Guangcong Luo 2010-01-03 06:11:23 +00:00 committed by Git SVN Gateway
parent cb4c47cde5
commit 9b0381b14b
6 changed files with 3 additions and 1 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 756 KiB

After

Width:  |  Height:  |  Size: 896 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 604 KiB

After

Width:  |  Height:  |  Size: 1.2 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 896 KiB

After

Width:  |  Height:  |  Size: 756 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 MiB

After

Width:  |  Height:  |  Size: 604 KiB

View File

@ -40,6 +40,8 @@
* Global Definitions
*/
/***************************************************************************/
#define NUM_BACKDROPS 6
#define BACKDROP_WIDTH 640
#define BACKDROP_HEIGHT 480

View File

@ -330,7 +330,7 @@ void pie_LoadBackDrop(SCREENTYPE screenType)
switch (screenType)
{
case SCREEN_RANDOMBDROP:
snprintf(backd, sizeof(backd), "texpages/bdrops/backdrop%i.png", rand() % 8); // Range: 0-7
snprintf(backd, sizeof(backd), "texpages/bdrops/backdrop%i.png", rand() % NUM_BACKDROPS); // Range: 0 to (NUM_BACKDROPS-1)
break;
case SCREEN_MISSIONEND:
sstrcpy(backd, "texpages/bdrops/missionend.png");