Removed useless function

This commit is contained in:
2025-03-26 10:43:07 +01:00
parent 178aea9af9
commit 7f68bd2e79

View File

@@ -156,12 +156,6 @@
#include <MLV/MLV_all.h>
int quit(void)
{
MLV_free_window();
return 0;
}
int main(int argc, char *argv[])
{
/* Créé et affiche la fenêtre */
@@ -204,7 +198,7 @@ int main(int argc, char *argv[])
} while (key != MLV_KEYBOARD_ESCAPE);
/* Appelle la fonction quit pour fermer la fenêtre */
quit();
MLV_free_window();
return 0;
}