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-12-02 20:06:11 -0800
commit9ed77d12b10c2ed830647bfcadfb3478b2e418d1 (patch)
treec04f7430462f36d08298c3a86022fa78bab2f3be /progs/glsl
parent832593772dac9b83db1ed44c8654352978e756eb (diff)
progs/glsl: Add missing break statement in multinoise.c.
(cherry picked from commit 43080e40aa0d34423e10f1d50aad15289b2b9aec)
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;