Remove original backdrops (ugly) and wzlogo 3, 4 and rename the others to backdropX

git-svn-id: svn+ssh://svn.gna.org/svn/warzone/trunk@4046 4a71c877-e1ca-e34f-864e-861f7616d084
master
Dennis Schridde 2008-03-14 19:31:42 +00:00
parent 3e9cb44a88
commit 0316bee001
16 changed files with 3 additions and 6 deletions

View File

@ -16,8 +16,8 @@ behind the release.
The following files are licensed other than under the GPL:
data/texpages/bdrops/07-bdrop.png
data/texpages/bdrops/08-bdrop.png
data/texpages/bdrops/backdrop5.png
data/texpages/bdrops/backdrop6.png
- CC BY SA 3.0 - Copyright (c) 2007-2008 "B. V. Edwards" <cathuria>
data/mods/global/newst_tiles/
- CC BY SA 3.0 - Copyright (c) 1999-2004 N.E.W.S.T., permission by "Frank Lamboy" <rman>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 217 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 233 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 284 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 283 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 185 KiB

View File

Before

Width:  |  Height:  |  Size: 766 KiB

After

Width:  |  Height:  |  Size: 766 KiB

View File

Before

Width:  |  Height:  |  Size: 612 KiB

After

Width:  |  Height:  |  Size: 612 KiB

View File

Before

Width:  |  Height:  |  Size: 735 KiB

After

Width:  |  Height:  |  Size: 735 KiB

View File

Before

Width:  |  Height:  |  Size: 1.5 MiB

After

Width:  |  Height:  |  Size: 1.5 MiB

View File

Before

Width:  |  Height:  |  Size: 1.2 MiB

After

Width:  |  Height:  |  Size: 1.2 MiB

View File

Before

Width:  |  Height:  |  Size: 1.4 MiB

After

Width:  |  Height:  |  Size: 1.4 MiB

View File

Before

Width:  |  Height:  |  Size: 1016 KiB

After

Width:  |  Height:  |  Size: 1016 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 252 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 413 KiB

View File

@ -345,10 +345,7 @@ void pie_LoadBackDrop(SCREENTYPE screenType)
switch (screenType)
{
case SCREEN_RANDOMBDROP:
if ( rand() % 2 == 0 )
snprintf(backd, sizeof(backd), "texpages/bdrops/0%i-bdrop.png", rand() % 9); // Range: 0-8
else
snprintf(backd, sizeof(backd), "texpages/bdrops/wzlogo_%i.png", rand() % 5); // Range: 0-4
snprintf(backd, sizeof(backd), "texpages/bdrops/backdrop%i.png", rand() % 7); // Range: 0-6
break;
case SCREEN_MISSIONEND:
snprintf(backd, sizeof(backd), "texpages/bdrops/missionend.png");