aboutsummaryrefslogtreecommitdiffstats
path: root/inc
diff options
context:
space:
mode:
authorJozanLeClerc <bousset.rudy@gmail.com>2020-03-06 20:43:42 +0100
committerJozanLeClerc <bousset.rudy@gmail.com>2020-03-06 20:43:42 +0100
commit6a89966eed6110d0e7a7ec53727c4473d18ad441 (patch)
treece56076af530fdbc94bd41702dda27a815561f2d /inc
parentit's going well (diff)
download42-cub3d-6a89966eed6110d0e7a7ec53727c4473d18ad441.tar.gz
42-cub3d-6a89966eed6110d0e7a7ec53727c4473d18ad441.tar.bz2
42-cub3d-6a89966eed6110d0e7a7ec53727c4473d18ad441.tar.xz
42-cub3d-6a89966eed6110d0e7a7ec53727c4473d18ad441.tar.zst
42-cub3d-6a89966eed6110d0e7a7ec53727c4473d18ad441.zip
Fuck execve
Diffstat (limited to '')
-rw-r--r--inc/cub3d.h2
-rw-r--r--inc/cub3d_structs.h1
2 files changed, 2 insertions, 1 deletions
diff --git a/inc/cub3d.h b/inc/cub3d.h
index ea55faf..ef05364 100644
--- a/inc/cub3d.h
+++ b/inc/cub3d.h
@@ -119,7 +119,7 @@ uint8_t ft_use_args(int argc, const char *argv[], t_cub *clist);
*/
void ft_set_minimap_scale(t_cub *clist);
-void ft_music_fork(char *music_cmd);
+void ft_music_fork(char **mcmd_words);
void ft_detect(t_cub *cl);
void ft_castray(t_cub *cl);
int8_t ft_save_to_bmp(t_cub *cl);
diff --git a/inc/cub3d_structs.h b/inc/cub3d_structs.h
index 7e49e14..d253b7b 100644
--- a/inc/cub3d_structs.h
+++ b/inc/cub3d_structs.h
@@ -152,6 +152,7 @@ typedef struct s_map
char *music_cmd;
char *mapl;
char **map;
+ char **mcmd_words;
int8_t x_step;
int8_t y_step;
size_t map_w;