diff options
author | Camil Staps | 2015-08-24 12:48:48 +0200 |
---|---|---|
committer | Camil Staps | 2015-08-24 12:48:48 +0200 |
commit | 66b93200c310f2efa71a7a6df4ce4c2e9655c5cb (patch) | |
tree | f53d775b7c168156eb773129038110610d83ffb8 | |
parent | Fixes for temporary file handling in WinCreateBitmap (diff) |
WinPlaySound in background
-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;
|