diff options
-rw-r--r-- | src/mesa/main/enable.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/main/enable.c b/src/mesa/main/enable.c index b6402f95a2..78c200dcae 100644 --- a/src/mesa/main/enable.c +++ b/src/mesa/main/enable.c @@ -1,4 +1,4 @@ -/* $Id: enable.c,v 1.60 2002/04/19 00:23:08 brianp Exp $ */ +/* $Id: enable.c,v 1.61 2002/04/19 08:38:23 alanh Exp $ */ /* * Mesa 3-D graphics library @@ -120,7 +120,7 @@ client_state( GLcontext *ctx, GLenum cap, GLboolean state ) return; } - if (*var == flag) + if (*var == state) return; FLUSH_VERTICES(ctx, _NEW_ARRAY); |