Remove static keyword
This commit is contained in:
parent
a2b6cbe0c3
commit
85369ea443
1 changed files with 2 additions and 2 deletions
4
window.c
4
window.c
|
@ -5,7 +5,7 @@
|
|||
int dimensions[] = {1280, 720};
|
||||
|
||||
// Animations
|
||||
static GL4DHanime animations[] = {
|
||||
GL4DHanime animations[] = {
|
||||
{ 5000, cube, NULL, NULL },
|
||||
{ 2500, cube, cube2, fondu },
|
||||
{ 5000, cube2, NULL, NULL },
|
||||
|
@ -13,7 +13,7 @@ static GL4DHanime animations[] = {
|
|||
};
|
||||
|
||||
// Comportement à la fermeture du programme
|
||||
static void fermeture(void);
|
||||
void fermeture(void);
|
||||
|
||||
int main(int argc, char *argv[]) {
|
||||
if(!gl4duwCreateWindow(argc, argv, "Démo Anri KENNEL", 10, 10, dimensions[0], dimensions[1], GL4DW_SHOWN)) {
|
||||
|
|
Reference in a new issue