From: Ash Tyndall Date: Wed, 19 Oct 2011 12:16:38 +0000 (+0800) Subject: (no commit message) X-Git-Url: https://git.ucc.asn.au/?p=atyndall%2Fcits2231.git;a=commitdiff_plain;h=7278cd974919d7eadb6a0cb1551eb67c5204a8c3;hp=39c33ee13f412a215cd236f017f222d873dc968f --- diff --git a/scene.c b/scene.c index 88cb621..c9149ff 100644 --- a/scene.c +++ b/scene.c @@ -614,11 +614,11 @@ void drawLine() { glDisable(GL_TEXTURE_2D); glEnable(GL_BLEND); glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA); - glColor4ub( 0.0, 0.0, 0.0, 0.0 ); + glColor4ub( 0.0, 0.0, 0.0, 0.5 ); glBegin(GL_LINES); - glVertex3i( 10.0, 0, 0.0); - glVertex3i( -10.0, 0, 0.0); + glVertex3i( 10.0, 0.1, 0.0); + glVertex3i( -10.0, 0.1, 0.0); glEnd(); glDisable(GL_BLEND);