summaryrefslogtreecommitdiff
path: root/progs/glsl
diff options
context:
space:
mode:
authorVinson Lee <vlee@vmware.com>2009-11-12 16:20:23 -0800
committerVinson Lee <vlee@vmware.com>2009-11-12 16:21:49 -0800
commit43080e40aa0d34423e10f1d50aad15289b2b9aec (patch)
treebb5785e98c26f8c4bb130e67ff9e20cde69d922b /progs/glsl
parentb6b753f72728b734fc9886f4ec513ae09e6b269d (diff)
progs/glsl: Add missing break statement in multinoise.c.
Diffstat (limited to 'progs/glsl')
-rw-r--r--progs/glsl/multinoise.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/progs/glsl/multinoise.c b/progs/glsl/multinoise.c
index 0d4026e29c..06207f78b5 100644
--- a/progs/glsl/multinoise.c
+++ b/progs/glsl/multinoise.c
@@ -125,6 +125,7 @@ Key(unsigned char key, int x, int y)
case 'a':
Anim = !Anim;
glutIdleFunc(Anim ? Idle : NULL);
+ break;
case 's':
Slice -= step;
break;