mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-12-25 03:00:46 +00:00
Disables the sky clamp hack for ART parallaxed skies in polymost.
git-svn-id: https://svn.eduke32.com/eduke32@620 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
b3677fc796
commit
3ca6158794
1 changed files with 2 additions and 2 deletions
|
@ -3037,7 +3037,7 @@ static void polymost_drawalls(int bunch)
|
|||
//Use clamping for tiled sky textures
|
||||
for (i=(1<<pskybits)-1;i>0;i--)
|
||||
if (pskyoff[i] != pskyoff[i-1])
|
||||
{ skyclamphack = 1; break; }
|
||||
{ skyclamphack = 0; break; }
|
||||
}
|
||||
#endif
|
||||
if (bpp == 8 || !usehightile || !hicfindsubst(globalpicnum,globalpal,1))
|
||||
|
@ -3410,7 +3410,7 @@ static void polymost_drawalls(int bunch)
|
|||
//Use clamping for tiled sky textures
|
||||
for (i=(1<<pskybits)-1;i>0;i--)
|
||||
if (pskyoff[i] != pskyoff[i-1])
|
||||
{ skyclamphack = 1; break; }
|
||||
{ skyclamphack = 0; break; }
|
||||
}
|
||||
#endif
|
||||
//Parallaxing sky...
|
||||
|
|
Loading…
Reference in a new issue