summaryrefslogtreecommitdiff
path: root/src/mesa/main/dlist.c
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2004-03-26 23:54:53 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2004-03-26 23:54:53 +0000
commit79b372b92a42aeee11f0500fefe8fc92126e39e3 (patch)
tree3a246d86c2da1d9752aa7d4be3e850a343ba5273 /src/mesa/main/dlist.c
parent7b776de12c3e2035f49ccd09d42a655dde90d26d (diff)
fix some warnings
Diffstat (limited to 'src/mesa/main/dlist.c')
-rw-r--r--src/mesa/main/dlist.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/dlist.c b/src/mesa/main/dlist.c
index 26bf76a007..ef9c74fb74 100644
--- a/src/mesa/main/dlist.c
+++ b/src/mesa/main/dlist.c
@@ -4891,7 +4891,7 @@ static void GLAPIENTRY save_Begin( GLenum mode )
Node *n;
GLboolean error = GL_FALSE;
- if (mode < GL_POINTS || mode > GL_POLYGON) {
+ if (/*mode < GL_POINTS ||*/ mode > GL_POLYGON) {
_mesa_compile_error( ctx, GL_INVALID_ENUM, "Begin (mode)");
error = GL_TRUE;
}