From c6b68616d4ad34fd3efc0bc6435685aa3a69debb Mon Sep 17 00:00:00 2001 From: Ash Tyndall Date: Sat, 22 Oct 2011 15:22:38 +0800 Subject: [PATCH] --- helper.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/helper.c b/helper.c index 441b3c9..e933bb1 100644 --- a/helper.c +++ b/helper.c @@ -357,7 +357,9 @@ void updateLights() { glPushMatrix(); glColor3f(1.0, 1.0, 1.0); glTranslatef(lightObjs[i].position[0], lightObjs[i].position[1], lightObjs[i].position[2]); - glutSolidSphere(lightBallSize, 20, 20); + glPushAttrib(GL_NORMALIZE); + glutSolidSphere(lightBallSize, 20, 20); + glPopAttrib() ; glPopMatrix(); } -- 2.20.1