From 7278cd974919d7eadb6a0cb1551eb67c5204a8c3 Mon Sep 17 00:00:00 2001 From: Ash Tyndall Date: Wed, 19 Oct 2011 20:16:38 +0800 Subject: [PATCH] --- scene.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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); -- 2.20.1