From 4b5f7e00b646e95a043932bf65a5bbac03596339 Mon Sep 17 00:00:00 2001 From: Steven Fuller Date: Sun, 28 Sep 2008 23:38:42 -0700 Subject: [PATCH] Adjusted the polygon offset to a more reasonable value. --- src/opengl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/opengl.c b/src/opengl.c index e112ef2..6bc759d 100644 --- a/src/opengl.c +++ b/src/opengl.c @@ -517,7 +517,7 @@ void D3D_DecalSystem_Setup() pglEnable(GL_POLYGON_OFFSET_FILL); static GLfloat factor = 0.0f; - static GLfloat units = -100.0f; + static GLfloat units = -0.09375f; pglPolygonOffset(factor, units); }