diff options
-rw-r--r-- | src/client/cl_cin.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/client/cl_cin.c b/src/client/cl_cin.c index e91de5c6..8820a4f9 100644 --- a/src/client/cl_cin.c +++ b/src/client/cl_cin.c @@ -1473,7 +1473,9 @@ int CIN_PlayCinematic( const char *arg, int x, int y, int w, int h, int systemBi Con_Close(); - s_rawend[0] = s_soundtime; + if (!cinTable[currentHandle].silent) { + s_rawend[0] = s_soundtime; + } return currentHandle; } |