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-861f7616d084master
|
@ -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>
|
||||
|
|
Before Width: | Height: | Size: 217 KiB |
Before Width: | Height: | Size: 233 KiB |
Before Width: | Height: | Size: 284 KiB |
Before Width: | Height: | Size: 283 KiB |
Before Width: | Height: | Size: 185 KiB |
Before Width: | Height: | Size: 766 KiB After Width: | Height: | Size: 766 KiB |
Before Width: | Height: | Size: 612 KiB After Width: | Height: | Size: 612 KiB |
Before Width: | Height: | Size: 735 KiB After Width: | Height: | Size: 735 KiB |
Before Width: | Height: | Size: 1.5 MiB After Width: | Height: | Size: 1.5 MiB |
Before Width: | Height: | Size: 1.2 MiB After Width: | Height: | Size: 1.2 MiB |
Before Width: | Height: | Size: 1.4 MiB After Width: | Height: | Size: 1.4 MiB |
Before Width: | Height: | Size: 1016 KiB After Width: | Height: | Size: 1016 KiB |
Before Width: | Height: | Size: 252 KiB |
Before Width: | Height: | Size: 413 KiB |
|
@ -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");
|
||||
|
|