From 43c6ebee8d5c9371e630d266e8f170d95fb5ec1c Mon Sep 17 00:00:00 2001 From: Zack Middleton Date: Sun, 12 Jan 2014 15:11:04 -0600 Subject: [PATCH] Fix music studder in base sound when starting silent cinematics --- code/client/cl_cin.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/code/client/cl_cin.c b/code/client/cl_cin.c index 45c4dd45..599443c9 100644 --- a/code/client/cl_cin.c +++ b/code/client/cl_cin.c @@ -1472,7 +1472,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; }