From 9d2997d80f2f1552a3d7a6738fb554f94512877d Mon Sep 17 00:00:00 2001 From: Zack Middleton Date: Fri, 31 May 2013 01:07:49 -0500 Subject: Fix null model axis disappearing if sky is in view --- src/renderergl1/tr_surface.c | 1 + 1 file changed, 1 insertion(+) (limited to 'src/renderergl1') diff --git a/src/renderergl1/tr_surface.c b/src/renderergl1/tr_surface.c index bf3e5856..d357d9cd 100644 --- a/src/renderergl1/tr_surface.c +++ b/src/renderergl1/tr_surface.c @@ -1158,6 +1158,7 @@ Draws x/y/z lines from the origin for orientation debugging */ static void RB_SurfaceAxis( void ) { GL_Bind( tr.whiteImage ); + GL_State( GLS_DEFAULT ); qglLineWidth( 3 ); qglBegin( GL_LINES ); qglColor3f( 1,0,0 ); -- cgit