diff --git a/includes/animations.h b/includes/animations.h index 7bdf82a..2b6e8cd 100644 --- a/includes/animations.h +++ b/includes/animations.h @@ -3,6 +3,8 @@ #include +#include "audio.h" + // Cube coloré qui tourne sur lui-même void cube(int); diff --git a/window.c b/window.c index e802f12..bb696bb 100644 --- a/window.c +++ b/window.c @@ -1,7 +1,8 @@ +/* TP8 */ + #include #include "includes/animations.h" -#include "includes/audio.h" // Son de fond static Mix_Music * ambiance = NULL; @@ -22,9 +23,9 @@ int main(int argc, char *argv[]) { // Animations GL4DHanime animations[] = { - { 5000, cube, NULL, NULL }, - { 5000, voronoi, NULL, NULL }, - { 5000, polygone, NULL, NULL }, + { 6800, cube, NULL, NULL }, + { 8500, voronoi, NULL, NULL }, + { 6000, polygone, NULL, NULL }, { 0, NULL, NULL, NULL } };