summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVinson Lee <vlee@vmware.com>2009-11-11 17:39:58 -0800
committerVinson Lee <vlee@vmware.com>2009-11-11 17:39:58 -0800
commit7dfea5c0722e9da101805c15b9dd26352816bca9 (patch)
treefc294a08e9a8e4a1ab99bc22e5329a8ea56e049b
parent2cfbbc76e445d88bdac7dd4dd22aaf36bbc8e4cc (diff)
demos/glsl: Add missing break statement to noise test.
-rw-r--r--progs/glsl/noise.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/progs/glsl/noise.c b/progs/glsl/noise.c
index fdab263ea6a..bb024b50121 100644
--- a/progs/glsl/noise.c
+++ b/progs/glsl/noise.c
@@ -119,6 +119,7 @@ Key(unsigned char key, int x, int y)
case 'a':
Anim = !Anim;
glutIdleFunc(Anim ? Idle : NULL);
+ break;
case 's':
Slice -= step;
break;