mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-11 07:11:39 +00:00
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:
parent
7d701ae7e2
commit
d5ed8aa728
1 changed files with 1 additions and 1 deletions
|
@ -4059,7 +4059,7 @@ void G_DrawBackground(void)
|
||||||
if ((unsigned)bgtile < MAXTILES)
|
if ((unsigned)bgtile < MAXTILES)
|
||||||
for (y=y1; y<y2; y+=tilesiz[bgtile].y)
|
for (y=y1; y<y2; y+=tilesiz[bgtile].y)
|
||||||
for (x=0; x<xdim; x+=tilesiz[bgtile].x)
|
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);
|
else rotatesprite_fs(160<<16,100<<16,65536L,0,bgtile,16,0,2+8+64+BGSTRETCH);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue