aboutsummaryrefslogtreecommitdiffstats
path: root/inc
diff options
context:
space:
mode:
Diffstat (limited to 'inc')
-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;