From: Vinson Lee Date: Thu, 12 Nov 2009 01:39:58 +0000 (-0800) Subject: demos/glsl: Add missing break statement to noise test. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=7dfea5c0722e9da101805c15b9dd26352816bca9;p=mesa.git demos/glsl: Add missing break statement to noise test. --- 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;