diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2020-04-24 18:25:54 +0200 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2020-04-24 18:25:54 +0200 |
commit | 302e0bc29ecf360dbd0a9929e12b0ab0deacb6c1 (patch) | |
tree | d8f7e18e06b744413ab2c300d0fc34191713c330 /src/main.c | |
parent | Back to clang (diff) | |
download | 42-cub3d-302e0bc29ecf360dbd0a9929e12b0ab0deacb6c1.tar.gz 42-cub3d-302e0bc29ecf360dbd0a9929e12b0ab0deacb6c1.tar.bz2 42-cub3d-302e0bc29ecf360dbd0a9929e12b0ab0deacb6c1.tar.xz 42-cub3d-302e0bc29ecf360dbd0a9929e12b0ab0deacb6c1.tar.zst 42-cub3d-302e0bc29ecf360dbd0a9929e12b0ab0deacb6c1.zip |
Cleaner
Diffstat (limited to 'src/main.c')
-rw-r--r-- | src/main.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -27,6 +27,8 @@ int if (ft_init_cub3d(clist) < 0) return (FT_RET_FAILED_STRUCTS); ft_parse_map(argv[1], clist); + if (ft_init_sfx(clist) < 0) + return (FT_RET_ALLOC_ERR); if (ft_init_winlx(clist) < 0) return (ft_exit(FT_RET_FAILED_MLX, clist)); ft_use_args(argc, argv, clist); |