Restore the shade of a tiled MENUTILE to 8, rather than 16.

git-svn-id: https://svn.eduke32.com/eduke32@5042 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
hendricks266 2015-03-08 07:56:57 +00:00
parent 7d701ae7e2
commit d5ed8aa728
1 changed files with 1 additions and 1 deletions

View File

@ -4059,7 +4059,7 @@ void G_DrawBackground(void)
if ((unsigned)bgtile < MAXTILES)
for (y=y1; y<y2; y+=tilesiz[bgtile].y)
for (x=0; x<xdim; x+=tilesiz[bgtile].x)
rotatesprite_fs(x<<16,y<<16,65536L,0,bgtile,16,0,8+16+64);
rotatesprite_fs(x<<16,y<<16,65536L,0,bgtile,8,0,8+16+64);
}
else rotatesprite_fs(160<<16,100<<16,65536L,0,bgtile,16,0,2+8+64+BGSTRETCH);