(no commit message)
[atyndall/cits2231.git] / helper.c
index 4d8f96e..0d5574b 100644 (file)
--- a/helper.c
+++ b/helper.c
@@ -257,20 +257,22 @@ void drawFloor() {
 void drawLine() {
     // **NOTE: fix function
     glDisable(GL_TEXTURE_2D);
+    glDisable(GL_LIGHTING);
     glEnable(GL_BLEND);
     glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
-    glColor4ub( 0.0, 0.0, 0.0, 0.0 );
+    glColor3f( 0.0, 0.0, 0.0 );
 
     glBegin(GL_LINES);
-    glVertex3i(  lineLength, 1.0, 0.0 );
-    glVertex3i( -lineLength, 1.0, 0.0 );
+    glVertex3i(  lineLength, 0.0, 0.0 );
+    glVertex3i( -lineLength, 0.0, 0.0 );
     glEnd();
 
     glBegin(GL_LINES);
-    glVertex3i( 0.0, 1.0,  lineLength );
-    glVertex3i( 0.0, 1.0, -lineLength );
+    glVertex3i( 0.0, 0.0,  lineLength );
+    glVertex3i( 0.0, 0.0, -lineLength );
     glEnd();
 
     glDisable(GL_BLEND);
+    glEnable(GL_LIGHTING);
     glEnable(GL_TEXTURE_2D);
 }
\ No newline at end of file

UCC git Repository :: git.ucc.asn.au