blob: fdfdacd200a5f2da7da4064d4d1a5802645a56a0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_del_sfx_cmd.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/02/14 17:28:46 by rbousset #+# #+# */
/* Updated: 2020/02/14 17:28:46 by rbousset ### ########lyon.fr */
/* */
/* ************************************************************************** */
#include <libft.h>
#include <cub3d.h>
#include <stdint.h>
void
ft_del_sfx_cmd(t_cub *clist)
{
uint8_t i;
i = 0;
while (i < FT_TOTAL_SFX)
{
ft_memdel((void*)&clist->sfx[i].cmd);
i++;
}
ft_memdel((void*)&clist->sfx[1].cmd_alt);
ft_memdel((void*)&clist->sfx[3].cmd_alt);
ft_memdel((void*)&clist->sfx[14].cmd_alt);
}
|