diff --git a/code/client/snd_openal.c b/code/client/snd_openal.c index b42eae5941..e2d199905c 100644 --- a/code/client/snd_openal.c +++ b/code/client/snd_openal.c @@ -1830,6 +1830,13 @@ void S_AL_RawSamples(int stream, int samples, int rate, int width, int channels, // Volume S_AL_Gain (streamSources[stream], volume * s_volume->value * s_alGain->value); } + + // Start stream + if(!streamPlaying[stream]) + { + qalSourcePlay( streamSources[stream] ); + streamPlaying[stream] = qtrue; + } } /*