(no commit message)
[atyndall/cits2231.git] / helper.c
index 4d8f96e..de70644 100644 (file)
--- a/helper.c
+++ b/helper.c
@@ -257,9 +257,10 @@ 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 );
@@ -267,10 +268,11 @@ void drawLine() {
     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