From 98c7aeb439656c9f928e45391633327ca40b5c0f Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Thu, 29 Jun 2000 22:07:40 +0000 Subject: [PATCH] we were drawing the sky layer twice (0-360 horiz, 0-360 vert). Change the vert to 0-180. --- source/gl_warp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/gl_warp.c b/source/gl_warp.c index 0c8faba..dcece4d 100644 --- a/source/gl_warp.c +++ b/source/gl_warp.c @@ -689,7 +689,7 @@ R_DrawSkyLayer (float s) a2y = -bubble_sintable[a+1]; glBegin (GL_TRIANGLE_STRIP); - for (b = 0; b <= 32; b++) + for (b = 0; b <= 16; b++) { x = bubble_costable[b]; y = -bubble_sintable[b];