centralized malloc system

This commit is contained in:
hugogogo
2022-03-24 21:53:03 +01:00
parent f37f2891a4
commit 2e6374b4d9
10 changed files with 261 additions and 16 deletions

View File

@@ -1,10 +1,10 @@
#include "cube3d.h"
int shut_down(t_game *game)
int shut_down(t_game *game)
{
mlx_destroy_window(game->mlx_ptr, game->win_ptr);
gexit(B_RED"close windows"RESET"\n");
exit(0);
free(game);
return (0);
}