aboutsummaryrefslogtreecommitdiffstats
path: root/src/ft_sfx_pain.c
diff options
context:
space:
mode:
authorRudy Bousset <bousset.rudy@gmail.com>2020-05-14 15:52:59 +0200
committerRudy Bousset <bousset.rudy@gmail.com>2020-05-14 15:52:59 +0200
commitf105354332c56deb23da7a24b038cc9ec50dbec0 (patch)
tree927733e21fd5664f58a3f8a913bee7fdd6e38843 /src/ft_sfx_pain.c
parentOk then (diff)
download42-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_pain.c')
-rw-r--r--src/ft_sfx_pain.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/ft_sfx_pain.c b/src/ft_sfx_pain.c
index d55c01c..ea46460 100644
--- a/src/ft_sfx_pain.c
+++ b/src/ft_sfx_pain.c
@@ -31,11 +31,12 @@ void
ref = (ref > 201) ? (0) : (ref + 1);
if (ref % 3)
{
- if (system(sfx[3].cmd))
- pthread_exit(NULL);
+ system(sfx[3].cmd);
+ }
+ else
+ {
+ system(sfx[3].cmd_alt);
}
- else if (system(sfx[3].cmd_alt))
- pthread_exit(NULL);
}
return (NULL);
}