diff options
Diffstat (limited to 'Linux_C_12/cCCallSystem_121.c')
-rw-r--r-- | Linux_C_12/cCCallSystem_121.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Linux_C_12/cCCallSystem_121.c b/Linux_C_12/cCCallSystem_121.c index a9cb1ea..85be2e2 100644 --- a/Linux_C_12/cCCallSystem_121.c +++ b/Linux_C_12/cCCallSystem_121.c @@ -57,8 +57,9 @@ void WinPlaySound (CLEAN_STRING filename, OS ios, Bool *ook, OS *oos) rprintf("WinPlaySound\n");
strcat(sys, cstring(filename));
+ strcat(sys, " &");
- rprintf("%s - %d\n", sys, system(sys));
+ system(sys);
*ook = TRUE;
*oos = ios;
|