diff options
author | Vinson Lee <[email protected]> | 2009-11-11 17:39:58 -0800 |
---|---|---|
committer | Vinson Lee <[email protected]> | 2009-11-11 17:39:58 -0800 |
commit | 7dfea5c0722e9da101805c15b9dd26352816bca9 (patch) | |
tree | fc294a08e9a8e4a1ab99bc22e5329a8ea56e049b /progs | |
parent | 2cfbbc76e445d88bdac7dd4dd22aaf36bbc8e4cc (diff) |
demos/glsl: Add missing break statement to noise test.
Diffstat (limited to 'progs')
-rw-r--r-- | progs/glsl/noise.c | 1 |
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; |