From eff45a482b40ddb5857adce9f6740282b04ab4a2 Mon Sep 17 00:00:00 2001 From: JozanLeClerc Date: Wed, 15 Apr 2020 16:54:12 +0200 Subject: Pretty compliant but mutex problems --- src/ft_draw_scene.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/ft_draw_scene.c') diff --git a/src/ft_draw_scene.c b/src/ft_draw_scene.c index 36cdf4f..ad6b373 100644 --- a/src/ft_draw_scene.c +++ b/src/ft_draw_scene.c @@ -52,7 +52,7 @@ static int8_t void ft_draw_scene(t_cub *clist) { - if (FT_OS == 2) + if (FT_OS == 2 || FT_OS == 3) { clist->img.img = mlx_new_image(clist->wlist.wlx, clist->wlist.x_size, clist->wlist.y_size); @@ -67,7 +67,7 @@ void ft_draw_hud(clist); mlx_put_image_to_window(clist->wlist.wlx, clist->wlist.winptr, clist->img.img, 0, 0); - if (FT_OS == 2) + if (FT_OS == 2 || FT_OS == 3) mlx_destroy_image(clist->wlist.wlx, clist->img.img); if (clist->ishud) { -- cgit v1.2.3