author | Don Pellegrino <don@drexel.edu> | 2009-06-16 23:24:19 (GMT) |
---|---|---|
committer | Don Pellegrino <don@drexel.edu> | 2009-06-16 23:24:19 (GMT) |
commit | cd81e4662d6fc2781be785a7df3bc6f43d46dd4a (patch) (unidiff) | |
tree | 53be87aeb9c0642deb7578644208b72d02cbb491 | |
parent | 20dd6d4a46931c1f935931e7ac288fbbf5a8edd5 (diff) | |
download | exp005-cd81e4662d6fc2781be785a7df3bc6f43d46dd4a.zip exp005-cd81e4662d6fc2781be785a7df3bc6f43d46dd4a.tar.gz exp005-cd81e4662d6fc2781be785a7df3bc6f43d46dd4a.tar.bz2 |
Added initialization of state variables.
-rw-r--r-- | src/view/exp004view.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/view/exp004view.c b/src/view/exp004view.c index b25173e..aa6e966 100644 --- a/src/view/exp004view.c +++ b/src/view/exp004view.c | |||
@@ -3,6 +3,7 @@ | |||
3 | #include "../controller/exp004reshape.h" | 3 | #include "../controller/exp004reshape.h" |
4 | #include "../controller/keyboard.h" | 4 | #include "../controller/keyboard.h" |
5 | #include "../model/exp004base.h" | 5 | #include "../model/exp004base.h" |
6 | #include "exp004init.h" | ||
6 | #include "exp004view.h" | 7 | #include "exp004view.h" |
7 | #include <GL/glut.h> | 8 | #include <GL/glut.h> |
8 | 9 | ||
@@ -35,6 +36,7 @@ exp004view (void) | |||
35 | 36 | ||
36 | // Initialize the model. | 37 | // Initialize the model. |
37 | exp004base (); | 38 | exp004base (); |
39 | exp004init (); | ||
38 | 40 | ||
39 | // Callbacks (Controllers) | 41 | // Callbacks (Controllers) |
40 | glutDisplayFunc (exp004display); | 42 | glutDisplayFunc (exp004display); |