summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2000-02-02 17:31:45 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2000-02-02 17:31:45 +0000
commitb45c71aeff84d8559ce52f5caac1ca8ee5bed157 (patch)
treea20972b6f19e916507709ca6259437060ac1b36f
parentd2702f0022055dcf1df53d9fbad5ab4497d8ed35 (diff)
changed > to >=
-rw-r--r--progs/demos/multiarb.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/progs/demos/multiarb.c b/progs/demos/multiarb.c
index cb22c66bbe..6650f28c3e 100644
--- a/progs/demos/multiarb.c
+++ b/progs/demos/multiarb.c
@@ -1,4 +1,4 @@
-/* $Id: multiarb.c,v 1.4 2000/02/02 01:07:21 brianp Exp $ */
+/* $Id: multiarb.c,v 1.5 2000/02/02 17:31:45 brianp Exp $ */
/*
* GL_ARB_multitexture demo
@@ -12,6 +12,9 @@
/*
* $Log: multiarb.c,v $
+ * Revision 1.5 2000/02/02 17:31:45 brianp
+ * changed > to >=
+ *
* Revision 1.4 2000/02/02 01:07:21 brianp
* limit Drift to [0, 1]
*
@@ -64,7 +67,7 @@ static void Idle( void )
{
if (Animate) {
Drift += 0.05;
- if (Drift > 1.0)
+ if (Drift >= 1.0)
Drift = 0.0;
#ifdef GL_ARB_multitexture