diff options
author | Rudy Bousset <bousset.rudy@gmail.com> | 2020-05-14 15:52:59 +0200 |
---|---|---|
committer | Rudy Bousset <bousset.rudy@gmail.com> | 2020-05-14 15:52:59 +0200 |
commit | f105354332c56deb23da7a24b038cc9ec50dbec0 (patch) | |
tree | 927733e21fd5664f58a3f8a913bee7fdd6e38843 /src/ft_sfx_weapon_two.c | |
parent | Ok then (diff) | |
download | 42-cub3d-f105354332c56deb23da7a24b038cc9ec50dbec0.tar.gz 42-cub3d-f105354332c56deb23da7a24b038cc9ec50dbec0.tar.bz2 42-cub3d-f105354332c56deb23da7a24b038cc9ec50dbec0.tar.xz 42-cub3d-f105354332c56deb23da7a24b038cc9ec50dbec0.tar.zst 42-cub3d-f105354332c56deb23da7a24b038cc9ec50dbec0.zip |
Cube VM adapted
Diffstat (limited to 'src/ft_sfx_weapon_two.c')
-rw-r--r-- | src/ft_sfx_weapon_two.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/ft_sfx_weapon_two.c b/src/ft_sfx_weapon_two.c index 6d8e4a7..4667ff5 100644 --- a/src/ft_sfx_weapon_two.c +++ b/src/ft_sfx_weapon_two.c @@ -27,8 +27,7 @@ void while (1) { pthread_mutex_lock(&sfx[8].mutex); - if (system(sfx[8].cmd)) - pthread_exit(NULL); + system(sfx[8].cmd); } return (NULL); } |