aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRudy Bousset <rbousset@z2r5p2.le-101.fr>2020-02-21 19:59:18 +0100
committerRudy Bousset <rbousset@z2r5p2.le-101.fr>2020-02-21 19:59:18 +0100
commitc18ab7c7d87702b809d56a82e015db8c13f7c8f7 (patch)
tree06da17dda42bc2396c0d602d1668286985cf0fc7
parentMakefile rupdate (diff)
download42-cub3d-c18ab7c7d87702b809d56a82e015db8c13f7c8f7.tar.gz
42-cub3d-c18ab7c7d87702b809d56a82e015db8c13f7c8f7.tar.bz2
42-cub3d-c18ab7c7d87702b809d56a82e015db8c13f7c8f7.tar.xz
42-cub3d-c18ab7c7d87702b809d56a82e015db8c13f7c8f7.tar.zst
42-cub3d-c18ab7c7d87702b809d56a82e015db8c13f7c8f7.zip
Removed shit music
-rw-r--r--src/main.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/main.c b/src/main.c
index ededacf..52bb211 100644
--- a/src/main.c
+++ b/src/main.c
@@ -15,30 +15,17 @@
#include <cub3d.h>
#include <stddef.h>
#include <unistd.h>
-#include <pthread.h>
-#include <stdlib.h>
-
-void
- *ft_zik(void *vargp)
-{
- (void)vargp;
- system("afplay revelations.mp3");
- return NULL;
-}
int
main(int argc, const char *argv[])
{
t_cub *clist;
- pthread_t thread_id;
if (argc < 2)
{
ft_dprintf(STDERR_FILENO, "Error\n\033[1;31mNo map selected\n\033[0m");
return (1);
}
- pthread_create(&thread_id, NULL, ft_zik, NULL);
- pthread_join(thread_id, NULL);
if (ft_init_cub3d(&clist) < 0)
return (2);
ft_parse_map(argv[1], clist);