diff options
author | Brian Paul <[email protected]> | 2004-03-26 23:54:53 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2004-03-26 23:54:53 +0000 |
commit | 79b372b92a42aeee11f0500fefe8fc92126e39e3 (patch) | |
tree | 3a246d86c2da1d9752aa7d4be3e850a343ba5273 /src/mesa/main/dlist.c | |
parent | 7b776de12c3e2035f49ccd09d42a655dde90d26d (diff) |
fix some warnings
Diffstat (limited to 'src/mesa/main/dlist.c')
-rw-r--r-- | src/mesa/main/dlist.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/dlist.c b/src/mesa/main/dlist.c index 26bf76a0077..ef9c74fb743 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; } |