suppression of the map view

This commit is contained in:
hugogogo
2022-05-02 09:39:03 +02:00
parent a2e4db41a9
commit a6fd2df6d5
7 changed files with 5 additions and 158 deletions

View File

@@ -5,15 +5,8 @@ void destroy_mlx(void *param)
t_game *game;
game = param;
// tmp, to draw map
mlx_destroy_image(game->mlx_ptr, game->map_img.ptr);
mlx_destroy_window(game->mlx_ptr, game->map_win.ptr);
// tmp end
mlx_destroy_image(game->mlx_ptr, game->img.ptr);
mlx_destroy_window(game->mlx_ptr, game->win.ptr);
mlx_destroy_display(game->mlx_ptr);
}