mirror of
https://git.code.sf.net/p/quake/newtree
synced 2024-11-26 05:51:36 +00:00
we were drawing the sky layer twice (0-360 horiz, 0-360 vert). Change the vert
to 0-180.
This commit is contained in:
parent
a9f17c7b6c
commit
98c7aeb439
1 changed files with 1 additions and 1 deletions
|
@ -689,7 +689,7 @@ R_DrawSkyLayer (float s)
|
||||||
a2y = -bubble_sintable[a+1];
|
a2y = -bubble_sintable[a+1];
|
||||||
|
|
||||||
glBegin (GL_TRIANGLE_STRIP);
|
glBegin (GL_TRIANGLE_STRIP);
|
||||||
for (b = 0; b <= 32; b++)
|
for (b = 0; b <= 16; b++)
|
||||||
{
|
{
|
||||||
x = bubble_costable[b];
|
x = bubble_costable[b];
|
||||||
y = -bubble_sintable[b];
|
y = -bubble_sintable[b];
|
||||||
|
|
Loading…
Reference in a new issue