diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2020-03-15 18:29:58 +0100 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2020-03-15 18:29:58 +0100 |
commit | d978ec52497e4e3ff14b759dda68049f27a1957b (patch) | |
tree | b1ca75a91cadbb414068ccda4002bebd6750b32c /src/ft_del_extra_sprites.c | |
parent | Makefiles fix (diff) | |
download | 42-cub3d-d978ec52497e4e3ff14b759dda68049f27a1957b.tar.gz 42-cub3d-d978ec52497e4e3ff14b759dda68049f27a1957b.tar.bz2 42-cub3d-d978ec52497e4e3ff14b759dda68049f27a1957b.tar.xz 42-cub3d-d978ec52497e4e3ff14b759dda68049f27a1957b.tar.zst 42-cub3d-d978ec52497e4e3ff14b759dda68049f27a1957b.zip |
Leak fix
Diffstat (limited to '')
-rw-r--r-- | src/ft_del_extra_sprites.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ft_del_extra_sprites.c b/src/ft_del_extra_sprites.c index 91d09a2..21df608 100644 --- a/src/ft_del_extra_sprites.c +++ b/src/ft_del_extra_sprites.c @@ -24,8 +24,8 @@ void i = 1; while ((i + 2) <= cl->mlist.topsp) { - if (cl->tlist[i + 9].img) - mlx_destroy_image(cl->wlist.wlx, cl->tlist[i + 9].img); + if (cl->tlist[i + 7].img) + mlx_destroy_image(cl->wlist.wlx, cl->tlist[i + 7].img); i++; } } |